Boing Boing Shop Killer

Boing Boing Shop Killer

Removes the dreaded Boing Boing Shop and Sponsor posts from boingboing.net

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Boing Boing Shop Killer",
  "author": "Wrybread",
  "description": "Removes the dreaded Boing Boing Shop and Sponsor posts from boingboing.net",
  "version": "1.94",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon48.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "storage",
    "*://*.boingboing.net/*",
    "*://boingboing.net/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.boingboing.net/*",
        "*://boingboing.net/*"
      ],
      "js": [
        "hide-boingboing-shop.js"
      ]
    }
  ]
}