Free The Web

Free The Web

Gets rid of cookie and privacy notifications across the web by hiding or accepting them.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Free The Web",
  "description": "Gets rid of cookie and privacy notifications across the web by hiding or accepting them.",
  "content_scripts": [
    {
      "css": [
        "styles.css"
      ],
      "js": [
        "vendor/jquery-3.3.1.min.js",
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "web_accessible_resources": [
    "data/*.json"
  ],
  "version": "1.0.5",
  "author": "Victor Pascu",
  "browser_action": {
    "default_title": "Free The Web",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "options_page": "options.html",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persisent": false
  },
  "icons": {
    "128": "/img/icon-default-128.png"
  }
}