Spoiler Block

Spoiler Block

This extension will black out divs based on specific keywords

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "author": "Michael Hari",
  "name": "Spoiler Block",
  "description": "This extension will black out divs based on specific keywords",
  "version": "1.0.2",
  "permissions": [
    "storage",
    "tabs"
  ],
  "options_page": "/options/spoiler_block_options.html",
  "background": {
    "scripts": [
      "/backgroundpage/background.js"
    ]
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon19.png",
      "38": "images/icon38.png"
    },
    "default_title": "Spoiler Block"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "css": [
        "/styles/style.css"
      ],
      "js": [
        "/scripts/app.js"
      ]
    }
  ]
}