Ad Blocker for Facebook™

Ad Blocker for Facebook™

Detect and block ads while using Facebook.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Ad Blocker for Facebook™",
  "name": "Ad Blocker for Facebook™",
  "description": "Detect and block ads while using Facebook.",
  "icons": {
    "16": "icons/16x16.png",
    "32": "icons/32x32.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "action": {
    "default_icon": {
      "16": "icons/16x16.png",
      "32": "icons/32x32.png",
      "48": "icons/48x48.png",
      "128": "icons/128x128.png"
    },
    "default_title": "Click Me",
    "default_popup": "pages/popup.html"
  },
  "manifest_version": 3,
  "version": "1.0.0.2",
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "permissions": [
    "storage",
    "declarativeNetRequest",
    "cookies"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "block_ads",
        "enabled": true,
        "path": "rule.json"
      }
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "static/content_scripts/main.js"
      ],
      "css": [
        "static/content_css/main.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "svg/*",
        "static/*",
        "pages/*",
        "gifs/*",
        "fonts/*",
        "icons/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';script-src-elem 'self' "
  },
  "background": {
    "service_worker": "service_worker/background.bundle.js"
  },
  "externally_connectable": {
    "matches": [
      "https://www.facebook.com/*",
      "https://mbasic.facebook.com/*"
    ]
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAjb1i70tyGquNIvMCK2ZqfjA2HzboAAdTA8q7zI7IgTYczk7qiG8IabBOzZIsJ3+heXx2rEBxjOMl3J+UED86h8lYPeUHoTdeyPSknNQjasUfVYtJNuMj+CGAc2ek+oeCK+ARpAS1nNOygc7apgLHrYFbFtlgGIWeNxUfkZXuJdxXHx35TiBkBfmE7SEHbrTBnDj46fHZxEvsRc3tTnOctJ8k/X3x9S4iKTVfhDp2N3twDl420qSI3jf6hebXAXQtwlJYpfXif0SkTX6dArlGuYF4c/1c6TOmvfakzjDP57n9X+heA08C5HiHsGFfVLmD81jDzU5sMtsRlwMCW2E6kQIDAQAB"
}