/r/Formula1 Sidebar Spoiler Stopper

/r/Formula1 Sidebar Spoiler Stopper

Allows you to hide the Race Winner, and Driver of the Day images from the sidebar of the Formula 1 subreddit.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "short_name": "__MSG_short_name__",
  "description": "__MSG_description__",
  "version": "0.2.0",
  "author": "Nick Schorr",
  "default_locale": "en",
  "icons": {
    "16": "images/icon_16.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "browser_action": {
    "default_icon": "images/icon_noblock_38.png",
    "default_title": "__MSG_name__",
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.reddit.com/r/formula1/*",
        "*://reddit.com/r/formula1/*"
      ],
      "js": [
        "js/blocker.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "js/icon_changer.js"
    ],
    "persistant": false
  },
  "permissions": [
    "storage"
  ]
}