Super Agent - Automatic cookie consent

Super Agent - Automatic cookie consent

Super Agent automatically fills out website's cookie consent forms for you based on your preferences. Super Agent will save you a lot of clicks and let you take control of your privacy in a very easy way.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "superagent - Automatic cookie consent",
  "version": "3.1.3",
  "description": "superagent automatically fills out website's cookie consent forms for you based on your preferences. superagent will save you a lot of clicks and let you take control of your privacy in a very easy way.",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "storage",
    "theme",
    "tabs",
    "cookies"
  ],
  "background": {
    "scripts": [
      "static/js/background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "static/js/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "match_about_blank": true
    }
  ],
  "icons": {
    "32": "images/logo/32.png",
    "64": "images/logo/64.png",
    "128": "images/logo/128.png",
    "256": "images/logo/256.png",
    "512": "images/logo/512.png",
    "1024": "images/logo/1024.png"
  },
  "browser_action": {
    "default_title": "superagent",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{a9cc4ef5-1149-47a9-8b94-490f324fe157}"
    }
  }
}