Examine source code of Copy & Paste as Text - Neatly formatted

Inspect and view changes in Copy & Paste as Text - Neatly formatted 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,
  "default_locale": "en",
  "name": "__MSG_extensionName__",
  "version": "1.0.3",
  "description": "__MSG_extensionDescription__",
  "permissions": [
    "storage",
    "contextMenus",
    "activeTab",
    "scripting"
  ],
  "options_page": "pages/help/index.html",
  "background": {
    "type": "module",
    "service_worker": "pages/background/index.js"
  },
  "action": {
    "default_popup": "pages/popup/index.html",
    "default_icon": "icon128.png"
  },
  "icons": {
    "32": "icon32.png",
    "48": "icon48.png",
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "icon128.png",
        "icon48.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}