Toggleable Chrome Exkittension

Toggleable Chrome Exkittension

This extension replaces all images with cats. You can easily enable/disable it with a popup. It is a great prank!

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Toggleable Chrome Exkittension",
  "version": "1.0",
  "web_accessible_resources": [
    "kittens/*.jpg"
  ],
  "background": {
    "scripts": [
      "kitten.js"
    ]
  },
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "browser_action": {
    "default_icon": "16.png",
    "default_popup": "popup.html",
    "default_title": "Chrome Exkittension"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "kitten.js"
      ]
    }
  ]
}