Falling Snow

Falling Snow

Adds an overlay of falling snow on (almost) any webpage

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Falling Snow",
  "version": "0.8",
  "description": "Adds an overlay of falling snow on (almost) any webpage",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "manifest_version": 2,
  "icons": {
    "16": "SnowIcon16.png",
    "48": "SnowIcon48.png",
    "128": "SnowIcon128.png"
  },
  "browser_action": {
    "default_title": "Add Snow"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "snow.js"
      ]
    }
  ],
  "options_page": "options.html"
}