LSD effect

LSD effect

LSD effect in your browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LSD effect",
  "version": "0.0.1",
  "manifest_version": 2,
  "description": "LSD effect in your browser",
  "background": {
    "scripts": [
      "background.js",
      "script.js",
      "off.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab"
  ],
  "icons": {
    "128": "icon1.png"
  },
  "browser_action": {
    "default_title": "LSD effect",
    "default_icon": "icon1.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "background.js",
        "script.js",
        "off.js"
      ]
    }
  ]
}