Drunk Website

Drunk Website

Make your web drunk :)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Drunk Website",
  "version": "0.0.1",
  "manifest_version": 3,
  "description": "Make your web drunk :)",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/logo/logo-16.png",
      "32": "/images/logo/logo-32.png",
      "48": "/images/logo/logo-48.png",
      "128": "/images/logo/logo-128.png"
    }
  },
  "icons": {
    "16": "/images/logo/logo-16.png",
    "32": "/images/logo/logo-32.png",
    "48": "/images/logo/logo-48.png",
    "128": "/images/logo/logo-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "myScript.js"
      ],
      "all_frames": true
    }
  ],
  "options_page": "about.html",
  "web_accessible_resources": [
    {
      "resources": [
        "filters.xml"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}