Cortex Cookie Manager

Cortex Cookie Manager

Switch cortex debug mode.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Cortex Cookie Manager",
  "version": "1.1.0",
  "description": "Switch cortex debug mode.",
  "permissions": [
    "tabs",
    "http://*/*"
  ],
  "icons": {
    "16": "i/icon-16.png",
    "48": "i/icon-48.png",
    "128": "i/icon-128.png"
  },
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "cortex.js"
      ],
      "all_frames": true
    }
  ],
  "browser_action": {
    "default_title": "Switch cortex debug mode",
    "default_icon": "i/icon-active-64.png",
    "default_popup": "popup.html"
  }
}