DogeGuard

DogeGuard

This extension will block all pictures hosted on cheezburger.com, and replace it with a silly picture of a chihuahua.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "DogeGuard",
  "description": "This extension will block all pictures hosted on cheezburger.com, and replace it with a silly picture of a chihuahua.",
  "version": "1.0.1",
  "background": {
    "scripts": [
      "triggerGuard.js",
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  }
}