Examine source code of Easy Copy AI - Copy Generator Tool

Inspect and view changes in Easy Copy AI - Copy Generator Tool source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Easy Copy AI - Copy Generator Tool",
  "description": "Use OpenAI chat GPT 4 to Generate Copy.  Use this extension to generate your copy directly in your browser. ",
  "version": "1.2",
  "icons": {
    "16": "easy_copy_16x16.png",
    "32": "easy_copy_32x32.png",
    "48": "easy_copy_48x48.png",
    "128": "easy_copy_128x128.png"
  },
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/vendor.js",
        "js/content_script.js"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "easy_copy_16x16.png",
        "easy_copy_32x32.png",
        "easy_copy_48x48.png",
        "easy_copy_128x128.png",
        "main_logo.png",
        "template.html"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "storage",
    "identity",
    "identity.email"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}