Examine source code of Right-Click & Text Actions Enabler

Inspect and view changes in Right-Click & Text Actions Enabler 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
{
  "name": "__MSG_CLKappName__",
  "description": "__MSG_CLKappDesc__",
  "default_locale": "en",
  "manifest_version": 3,
  "version": "2.3.4",
  "icons": {
    "16": "files/16.png",
    "32": "files/32.png",
    "64": "files/64.png",
    "128": "files/128.png",
    "256": "files/256.png",
    "512": "files/512.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "script/cXs.js"
      ],
      "run_at": "document_end",
      "match_about_blank": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "contextMenus",
    "notifications",
    "webRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "script/wXk.js"
  },
  "options_ui": {
    "page": "options/index.html",
    "open_in_tab": false
  },
  "action": {},
  "commands": {
    "_execute_action": {
      "description": "__MSG_commands__"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}