Examine source code of CleanCopify - Easy Select Copy Paste Plain Text

Inspect and view changes in CleanCopify - Easy Select Copy Paste Plain Text 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
{
  "manifest_version": 2,
  "name": "CleanCopify - Easy Select Copy Paste Text",
  "version": "1.1.1",
  "description": "Automatically copy selected text as plain text to your clipboard without formatting.",
  "permissions": [
    "storage",
    "clipboardWrite",
    "downloads",
    "tabs",
    "<all_urls>"
  ],
  "browser_action": {
    "default_popup": "src/entries/popup/index.html",
    "default_icon": {
      "128": "icons/128.png"
    }
  },
  "background": {
    "persistent": false,
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/entries/contentScript/content.js"
      ]
    }
  ],
  "icons": {
    "16": "icons/16.png",
    "19": "icons/19.png",
    "32": "icons/32.png",
    "38": "icons/38.png",
    "48": "icons/48.png",
    "64": "icons/64.png",
    "96": "icons/96.png",
    "128": "icons/128.png",
    "256": "icons/256.png",
    "512": "icons/512.png"
  },
  "web_accessible_resources": [
    "assets/TextSelecter-CZJ08ujx.js",
    "assets/state-DxU5pZos.js",
    "assets/vendor-DHCvYR1n.js",
    "contentScript.js"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{d324f873-a3b3-46d3-bf30-ec6939f16421}"
    }
  }
}