Context Menu Editor

Context Menu Editor

An editor for context menus (contextMenus). Click the Options page to edit it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "3.4",
  "options_page": "options.html",
  "description": "An editor for context menus (contextMenus). Click the Options page to edit it.",
  "name": "Context Menu Editor",
  "short_name": "CME",
  "background": {
    "persistant": false,
    "scripts": [
      "cme.js"
    ]
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "cmc.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "browser_action": {
    "default_title": "Context Menu Editor"
  },
  "content_security_policy": "script-src 'unsafe-eval' 'self';object-src 'self';",
  "icons": {
    "128": "128.png"
  }
}