BYR blocker

BYR blocker

眼不见为净,净了又净。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "BYR blocker",
  "version": "1.0",
  "description": "眼不见为净,净了又净。",
  "content_scripts": [
    {
      "matches": [
        "*://bbs.byr.cn/*",
        "*://bbs6.byr.cn/*"
      ],
      "js": [
        "js/blocker.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "icons/sb-icon-enabled.png",
    "default_title": "BYR blocker"
  },
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "icons/sb-icon16.png",
    "48": "icons/sb-icon48.png",
    "128": "icons/sb-icon128.png"
  }
}