Nervenschoner

Nervenschoner

Der Blocker der Verbraucherzentrale zaubert Cookie und Einwilligungs Banner einfach weg.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "ingenit GmbH&Co.KG",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "browser_style": false,
    "default_icon": {
      "16": "img/icon_16.png",
      "32": "img/icon_32.png"
    },
    "default_popup": "acp-popup.html",
    "default_title": "Nervenschoner"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "68.0"
    }
  },
  "commands": {
    "_execute_browser_action": {},
    "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__"
    },
    "toggle-cosmetic-filtering": {
      "description": "__MSG_toggleCosmeticFiltering__"
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "/js/vapi.js",
        "/js/vapi-client.js",
        "/js/contentscript.js"
      ],
      "match_about_blank": true,
      "matches": [
        "https://easylist.to/easylist/*",
        "https://secure.fanboy.co.nz/*",
        "https://publicsuffix.org/list/*",
        "https://raw.githubusercontent.com/AdguardTeam/FiltersRegistry/*",
        "https://nervenschoner.eu/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": false,
      "js": [
        "/js/scriptlets/subscriber.js"
      ],
      "matches": [
        "https://easylist.to/easylist/*",
        "https://secure.fanboy.co.nz/*",
        "https://publicsuffix.org/list/*",
        "https://raw.githubusercontent.com/AdguardTeam/FiltersRegistry/*",
        "https://nervenschoner.eu/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "default_locale": "de",
  "description": "__MSG_extShortDesc__",
  "icons": {
    "16": "img/icon_16.png",
    "32": "img/icon_32.png",
    "64": "img/icon_64.png",
    "128": "img/icon_128.png"
  },
  "manifest_version": 2,
  "name": "Nervenschoner",
  "options_ui": {
    "open_in_tab": true,
    "page": "dashboard.html"
  },
  "permissions": [
    "dns",
    "menus",
    "privacy",
    "storage",
    "tabs",
    "unlimitedStorage",
    "webNavigation",
    "webRequest",
    "webRequestBlocking",
    "https://easylist.to/easylist/*",
    "https://secure.fanboy.co.nz/*",
    "https://publicsuffix.org/list/*",
    "https://raw.githubusercontent.com/AdguardTeam/FiltersRegistry/*",
    "https://nervenschoner.eu/*",
    "*://*/*"
  ],
  "short_name": "Nervenschoner",
  "version": "1.3",
  "web_accessible_resources": [
    "/web_accessible_resources/*"
  ]
}