Chrome Quirks

Chrome Quirks

A fun extension that allows you to inject pre-loaded effects or custom CSS into any webpage!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Chrome Quirks",
  "short_name": "CQ",
  "manifest_version": 2,
  "version": "1.2",
  "description": "A fun extension that allows you to inject pre-loaded effects or custom CSS into any webpage!",
  "homepage_url": "http://paulkr.com/",
  "icons": {
    "256": "icons/icon256.png"
  },
  "background": {
    "scripts": [
      "jquery.js",
      "inject.js"
    ],
    "persistance": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icons/icon.png",
    "default_title": "Chrome Quirks",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "http://*/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}