Bye Bye Bad iStock Stock Photos

Bye Bye Bad iStock Stock Photos

This extension will hide all those dumb stock photos you're tired of seeing. This app currently supports: iStockPhoto.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Bye Bye Bad iStock Stock Photos",
  "short_name": "ByeBadPhotos",
  "description": "This extension will hide all those dumb stock photos you're tired of seeing. This app currently supports: iStockPhoto.com",
  "version": "1.11",
  "content_scripts": [
    {
      "matches": [
        "http://www.istockphoto.com/*"
      ],
      "css": [
        "styles.css"
      ],
      "js": [
        "jquery-1.11.3.min.js",
        "scripts.js"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": false
  }
}