AntiBrowserSpy - Social Network Block

AntiBrowserSpy - Social Network Block

Blocking Facebook's social plugins and make them accessible again with one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "1.2.2",
  "manifest_version": 2,
  "default_locale": "en",
  "description": "__MSG_description__",
  "short_name": "__MSG_shortName__",
  "icons": {
    "16": "images/abs_16.png",
    "48": "images/abs_48.png",
    "128": "images/abs_128.png"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "images/socialblock_de.png",
    "images/socialblock_en.png"
  ],
  "background": {
    "scripts": [
      "jquery-3.5.1.slim.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery-3.5.1.slim.js",
        "script.js"
      ],
      "exclude_matches": [
        "http://*.facebook.com/*",
        "https://*.facebook.com/*"
      ]
    }
  ]
}