Pokemon No Show

Pokemon No Show

'Pokemon No Show' hides posts if the content matches any of the keywords you define in the 'options' page

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "author": "Chris Sparshott",
  "name": "Pokemon No Show",
  "version": "0.1.0",
  "description": "'Pokemon No Show' hides posts if the content matches any of the keywords you define in the 'options' page",
  "icons": {
    "16": "assets/images/icon_16.png",
    "48": "assets/images/icon_48.png",
    "128": "assets/images/icon_128.png"
  },
  "browser_action": {
    "default_icon": "assets/images/icon_128.png"
  },
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "assets/jquery.min.js",
        "content.js"
      ]
    }
  ]
}