LongShot AI - Long Form Writing Assistant

LongShot AI - Long Form Writing Assistant

AI writer for those who take long-form content seriously. Rephrase. Summarize. Customize tone. Insert text without losing context.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LongShot AI - Long Form Writing Assistant",
  "description": "AI writer for those who take long-form content seriously. Rephrase. Summarize. Customize tone. Insert text without losing context.",
  "version": "1.2.6",
  "manifest_version": 3,
  "icons": {
    "16": "images/longshot-16x16.png",
    "48": "images/longshot-48x48.png",
    "128": "images/longshot-128x128.png"
  },
  "action": {
    "default_popup": "popup/build/index.html",
    "default_title": "Open the popup"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./content-scripts/build/static/js/main.898e09ec.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "cookies"
  ],
  "host_permissions": [
    "https://app.longshot.ai/"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}