Examine source code of Cookienator

Inspect and view changes in Cookienator 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": "Cookienator",
  "version": "1.2",
  "description": "Extension that lets you choose your preferences about web cookies and manages them in order to save you some time.",
  "icons": {
    "48": "icons/border-48.png"
  },
  "browser_action": {
    "default_icon": "icons/border-48.png",
    "default_title": "Cookienator",
    "default_popup": "popup/index.html",
    "browser_style": true
  },
  "permissions": [
    "storage",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts.js",
        "vendor_scripts/cookieyes.js",
        "vendor_scripts/cookienotice.js",
        "vendor_scripts/onetrust.js",
        "vendor_scripts/cookiebot.js",
        "vendor_scripts/didomi.js",
        "content.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{84131300-0363-42f9-897e-c53e8d8bcb8b}"
    }
  }
}