Confetti for Chrome

Confetti for Chrome

Spray confetti all over your screen with just one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Confetti for Chrome",
  "version": "1.0.1",
  "description": "Spray confetti all over your screen with just one click.",
  "permissions": [
    "activeTab",
    "tabs",
    "browserAction"
  ],
  "background": {
    "scripts": [
      "scripts/lib/hot-reload.js",
      "scripts/background.js"
    ],
    "persistent": true
  },
  "web_accessible_resources": [
    "images/*",
    "stylesheets/project-sky-stylesheet.css"
  ],
  "browser_action": {},
  "icons": {
    "16": "images/logo/confetti-16.png",
    "32": "images/logo/confetti-32.png",
    "48": "images/logo/confetti-48.png",
    "128": "images/logo/confetti-128.png"
  },
  "content_security_policy": "script-src 'self' https://www.gstatic.com/ https://www.googleapis.com https://ssl.google-analytics.com; object-src 'self';",
  "manifest_version": 2
}