HideAPoster

HideAPoster

This extension hides posts from a black list of posters (especially created for Rich Houston-NYG-WR-1971)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "HideAPoster",
  "description": "This extension hides posts from a black list of posters (especially created for Rich Houston-NYG-WR-1971)",
  "version": "0.0.5",
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "eraser-128.png",
    "default_popup": "bbihider.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*"
      ],
      "js": [
        "hide.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "permissions": [
    "activeTab",
    "notifications",
    "storage",
    "http://*/*"
  ]
}