DiS Content Blocker

DiS Content Blocker

Block users and threads on the Drowned In Sound message boards, AND MORE!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "DiS Content Blocker",
  "version": "7.1",
  "description": "Block users and threads on the Drowned In Sound message boards, AND MORE!",
  "icons": {
    "16": "icon.png",
    "128": "icon_128.png"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "background": {
    "persistent": true,
    "scripts": [
      "bg.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://drownedinsound.com/*"
      ],
      "run_at": "document_end",
      "css": [
        "styles.css"
      ],
      "js": [
        "jquery-1.7.1.min.js",
        "date-en-GB.js",
        "script.js"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "http://drownedinsound.com/*",
    "storage"
  ]
}