FOKBlocker Chrome

FOKBlocker Chrome

This plugin blocks particular users from being visible on the FOK! forum (including when they are quoted). You can configure users…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "FOKBlocker Chrome",
  "version": "0.2.0",
  "browser_action": {
    "default_icon": "icon_128.png"
  },
  "background": {
    "scripts": [
      "content.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://forum.fok.nl/topic/*",
        "http://forum.fok.nl/topic/*"
      ],
      "js": [
        "jquery.min.js",
        "content.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "icons": {
    "128": "icon_128.png"
  }
}