Chaos Extension

Chaos Extension

A fun little extension that activates a random effect on a site after a certain amount of time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Chaos Extension",
  "version": "2.1",
  "description": "A fun little extension that activates a random effect on a site after a certain amount of time.",
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "./options/options.html",
    "open_in_tab": false
  },
  "action": {
    "default_icon": "./icons/ce_16.png"
  },
  "icons": {
    "16": "./icons/ce_16.png",
    "32": "./icons/ce_32.png",
    "48": "./icons/ce_48.png",
    "128": "./icons/ce_128.png"
  },
  "background": {
    "service_worker": "./background/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./content/content.js"
      ],
      "css": [
        "./content/content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content/content.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}