Christmas Decorations

Christmas Decorations

Important features: - Adds Christmas decorations to any webpage - Decoration settings can be customized through the extensions…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Christmas Decorations",
  "version": "0.5",
  "permissions": [
    "storage"
  ],
  "icons": {
    "48": "icons/48.png",
    "96": "icons/96.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/mainloop.js",
        "content/main.js"
      ],
      "css": [
        "content/styles.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "action": {
    "default_icon": "icons/96.png",
    "default_title": "Christmas Decorations",
    "default_popup": "popup/index.html",
    "browser_style": true
  },
  "manifest_version": 3
}