Royal Baby Catifier

Royal Baby Catifier

Sick of seeing articles about the royal baby? This extension removes the container and replaces it with a cat

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Royal Baby Catifier",
  "description": "Sick of seeing articles about the royal baby? This extension removes the container and replaces it with a cat",
  "version": "0.1",
  "permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "icons/caticon16.png",
    "48": "icons/caticon48.png",
    "128": "icons/caticon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/jquery.js",
        "scripts/royalBabdyCatifier.js"
      ]
    }
  ]
}