fakeBlock

fakeBlock

Browser extension that protects you from misinformation

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "fakeBlock",
  "version": "1.0.0",
  "description": "Browser extension that protects you from misinformation",
  "homepage_url": "https://github.com/sirmammingtonham/fakeblock",
  "manifest_version": 2,
  "minimum_chrome_version": "74",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "67.0"
    }
  },
  "icons": {
    "128": "assets/icon.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "contextMenus",
    "activeTab"
  ],
  "content_scripts": [
    {
      "js": [
        "blocker.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "public/popup.html",
    "default_title": "Open the popup"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "browser-polyfill.min.js",
      "background.js"
    ]
  }
}