Whitelist Unlocker

Whitelist Unlocker

Prevents the ad-blocker blockers from showing up; auto whitelist.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Whitelist Unlocker",
  "short_name": "whunpm",
  "version": "0.0.2",
  "default_locale": "en",
  "description": "Prevents the ad-blocker blockers from showing up; auto whitelist.",
  "homepage_url": "https://www.polymermallard.com",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "web_accessible_resources": [
    "shared/image/*"
  ],
  "browser_action": {},
  "content_scripts": [
    {
      "matches": [
        "https://*.usatoday.com/*",
        "https://*.nytimes.com/*",
        "https://*.businessinsider.com/*"
      ],
      "js": [
        "shared/script/app/config.js",
        "shared/script/app/global.js",
        "shared/script/app/util.js",
        "shared/script/app/sites/businessinsider.com.js",
        "shared/script/app/sites/nytimes.com.js",
        "shared/script/app/sites/usatoday.com.js"
      ],
      "run_at": "document_end"
    }
  ]
}