Custom Effects for Chrome™

Custom Effects for Chrome™

Funny custom effects and GIFs right in your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "browser_action": {
    "default_icon": {
      "32": "assets/icons/icon32.png",
      "64": "assets/icons/icon64.png",
      "128": "assets/icons/icon128.png",
      "256": "assets/icons/icon256.png"
    },
    "default_popup": "index.html",
    "default_title": "__MSG_default_title__"
  },
  "content_scripts": [
    {
      "js": [
        "libs/jquery.js",
        "libs/jquery.throwable.js",
        "libs/beejdnd.js",
        "js/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "32": "assets/icons/icon32.png",
    "64": "assets/icons/icon64.png",
    "128": "assets/icons/icon128.png",
    "256": "assets/icons/icon256.png"
  },
  "background": {
    "scripts": [
      "libs/jquery.js",
      "js/background.js"
    ]
  },
  "manifest_version": 2,
  "name": "__MSG_name__",
  "permissions": [
    "storage",
    "contentSettings"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.1",
  "web_accessible_resources": [
    "assets/img/*.*"
  ]
}