https://hal.archives-ouvertes.fr/hal-03413044
Raw File
Tip revision: 55f6308a857dd97100e4b06a5d6647d5330eadaf authored by Software Heritage on 16 November 2021, 00:00:00 UTC
hal: Deposit 1859 in collection hal
Tip revision: 55f6308
manifest.json
{
  "description": "Recognizing and Categorizing 3rd Party Cookie Trackers",
  "manifest_version": 2,
  "name": "Tracking Categorizer",
  "version": "2.0",
  "browser_specific_settings": {
    "gecko": {
      "id": "addon@example.com",
      "strict_min_version": "42.0"
    }
  },

  "permissions": [
    "webRequest",
    "<all_urls>",
    "tabs",
    "webNavigation",
    "tabHide",
    "contextualIdentities",
    "cookies",
    "storage"
  ],

  "background": {
    "scripts": [
      "background-scripts/tabs.js",
      "background-scripts/manage-tabs.js",
      "background-scripts/manage-requests.js",
      "background-scripts/database.js",
      "background-scripts/webrequest.js",
      "background-scripts/tabinfo.js",
      "background-scripts/helper-classes.js",
      "libraries/psl.min.js"]
  },

  "options_ui": {
    "page": "options-page/options.html",
    "browser_style": true
  },

  "content_scripts": [
      {
        "matches": ["<all_urls>"]
      }
  ],

  "browser_action": {
    "default_icon": "button/logo.png",
    "default_title": "Requests",
    "default_popup": "popup/show_urls.html",
    "browser_style": true
  }
}
back to top