Total Adblock - Ad Blocker

Total Adblock - Ad Blocker

Instantly block annoying ads, pop-ups & intrusive trackers with Total Adblock.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Total Adblock - Ad Blocker",
  "author": "Protected.net",
  "description": "__MSG_manifest_description__",
  "version": "4.1.1",
  "web_accessible_resources": [
    "assets/img/*",
    "app/serve_injectable_content/*",
    "adguard/*"
  ],
  "browser_action": {
    "default_icon": {
      "16": "assets/img/_brand/icon/16px.png",
      "24": "assets/img/_brand/icon/24px.png",
      "32": "assets/img/_brand/icon/32px.png",
      "48": "assets/img/_brand/icon/48px.png",
      "64": "assets/img/_brand/icon/64px.png"
    },
    "default_popup": "app/popup/index.html"
  },
  "icons": {
    "16": "assets/img/_brand/icon/16px.png",
    "24": "assets/img/_brand/icon/24px.png",
    "32": "assets/img/_brand/icon/32px.png",
    "48": "assets/img/_brand/icon/48px.png",
    "64": "assets/img/_brand/icon/64px.png",
    "72": "assets/img/_brand/icon/72px.png",
    "96": "assets/img/_brand/icon/96px.png",
    "128": "assets/img/_brand/icon/128px.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "app/background/background.min.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "/app/continuous_protection_listener/continuous_protection_listener.min.js"
      ],
      "matches": [
        "http://*/continuous-protection",
        "https://*/continuous-protection"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "assets/js/library/adguard/adguard-content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "match_about_blank": true,
      "run_at": "document_start"
    },
    {
      "all_frames": false,
      "js": [
        "app/injectable_content/injectable_content.min.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    },
    {
      "all_frames": false,
      "js": [
        "app/my_dot_dashboard_modifier/my_dot_dashboard_modifier.min.js"
      ],
      "matches": [
        "*://my.totaladblock.com/*",
        "*://my.totalwebshield.com/*",
        "*://my.totalav.com/*",
        "*://adblock.totalav.com/*",
        "*://av.totaladblock.com/*",
        "*://adblock.totaladblock.com/*",
        "*://adblock.totalwebshield.com/*",
        "*://shield.totaladblock.com/*",
        "*://browser.totaladblock.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "alarms",
    "browsingData",
    "contentSettings",
    "cookies",
    "notifications",
    "storage",
    "tabs",
    "unlimitedStorage",
    "webRequest",
    "webRequestBlocking",
    "webNavigation",
    "<all_urls>"
  ]
}