Barrier

Barrier

The only all-in-one privacy extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "ProjHex",
  "background": {
    "scripts": [
      "js/console.js",
      "lib/lz4/lz4-block-codec-any.js",
      "lib/punycode.js",
      "lib/publicsuffixlist/publicsuffixlist.js",
      "js/webext.js",
      "js/vapi.js",
      "js/vapi-common.js",
      "js/vapi-background.js",
      "js/vapi-webrequest.js",
      "js/background.js",
      "js/traffic.js",
      "js/hntrie.js",
      "js/strie.js",
      "js/utils.js",
      "js/uritools.js",
      "js/lz4.js",
      "js/cachestorage.js",
      "js/assets.js",
      "js/filtering-context.js",
      "js/redirect-engine.js",
      "js/dynamic-net-filtering.js",
      "js/url-net-filtering.js",
      "js/static-filtering-parser.js",
      "js/static-net-filtering.js",
      "js/static-ext-filtering.js",
      "js/cosmetic-filtering.js",
      "js/scriptlet-filtering.js",
      "js/html-filtering.js",
      "js/hnswitches.js",
      "js/ublock.js",
      "js/messaging.js",
      "js/storage.js",
      "js/logger.js",
      "js/pagestore.js",
      "js/tab.js",
      "js/text-encode.js",
      "js/contextmenu.js",
      "js/reverselookup.js",
      "js/start.js",
      "js/commands.js",
      "default_filters.js",
      "block.js",
      "imagedata.js",
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": {
      "16": "img/icon_16.png",
      "32": "img/icon_32.png"
    },
    "default_popup": "popup-fenix.html",
    "default_title": "Barrier"
  },
  "commands": {
    "launch-element-picker": {
      "description": "__MSG_popupTipPicker__"
    },
    "launch-element-zapper": {
      "description": "__MSG_popupTipZapper__"
    },
    "launch-logger": {
      "description": "__MSG_popupTipLog__"
    },
    "open-dashboard": {
      "description": "__MSG_popupTipDashboard__"
    },
    "relax-blocking-mode": {
      "description": "__MSG_relaxBlockingMode__"
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "/js/vapi.js",
        "/js/vapi-client.js",
        "/js/contentscript.js",
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": false,
      "js": [
        "/js/scriptlets/subscriber.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "default_locale": "en",
  "description": "The only all-in-one privacy extension.",
  "icons": {
    "16": "img/icon_16.png",
    "32": "img/icon_32.png",
    "64": "img/icon_64.png",
    "128": "img/icon_128.png"
  },
  "incognito": "split",
  "manifest_version": 2,
  "minimum_chrome_version": "51.0",
  "name": "Barrier",
  "options_ui": {
    "open_in_tab": true,
    "page": "dashboard.html"
  },
  "permissions": [
    "contextMenus",
    "privacy",
    "storage",
    "tabs",
    "unlimitedStorage",
    "webNavigation",
    "webRequest",
    "webRequestBlocking",
    "cookies",
    "<all_urls>",
    "contentSettings"
  ],
  "short_name": "barrier₀",
  "storage": {
    "managed_schema": "managed_storage.json"
  },
  "version": "2.0.0",
  "web_accessible_resources": [
    "/web_accessible_resources/*"
  ]
}