Christmas Mode

Christmas Mode

Troll anyone with the christmas spirit

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Christmas Mode",
  "version": "2.0.0",
  "description": "Troll anyone with the christmas spirit",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_title": "Christmas mode",
    "default_icon": {
      "16": "icon16.png",
      "48": "icon48.png",
      "128": "icon128.png"
    },
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "http://*/",
    "https://*/"
  ],
  "incognito": "spanning",
  "web_accessible_resources": [
    "dino-christmas.mp3"
  ]
}