AI Writers for Chrome

AI Writers for Chrome

Extension for AI Writers

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "AI Writers for Chrome",
  "version": "0.2.14",
  "description": "Extension for AI Writers",
  "author": "Isak Choi <[email protected]>",
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://*.firebaseio.com https://www.google-analytics.com; object-src 'self'",
  "background": {
    "scripts": [
      "./background.js"
    ]
  },
  "web_accessible_resources": [
    "images/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "./content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "storage",
    "activeTab",
    "tabs"
  ],
  "icons": {
    "16": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_logo": {
      "16": "logo.png",
      "48": "logo.png",
      "128": "logo.png"
    }
  }
}