Examine source code of Cocoma - Cookie Consent Manager

Inspect and view changes in Cocoma - Cookie Consent Manager 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,
  "icons": {
    "16": "icon/icon-masked-16.png",
    "32": "icon/icon-masked-32.png",
    "48": "icon/icon-masked-48.png",
    "96": "icon/icon-masked-96.png",
    "128": "icon/icon-masked-128.png"
  },
  "browser_action": {
    "default_popup": "src/popup.html"
  },
  "background": {
    "scripts": [
      "src/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "src/content.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "cookies",
    "nativeMessaging",
    "*://*/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "cocoma@andreafranchini.com",
      "strict_min_version": "42.0"
    }
  },
  "description": "A web extension to automatically apply user cookie consent choice.",
  "version": "1.0.0",
  "name": "Cocoma - Cookie Consent Manager"
}