LED Notifications

LED Notifications

Blinks Your Webcam LED Light When You Have Unread Notifications In Any Open Chrome Tabs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "LED Notifications",
  "version": "2015.12.5.3",
  "description": "Blinks Your Webcam LED Light When You Have Unread Notifications In Any Open Chrome Tabs",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/16.png",
      "48": "icons/48.png"
    },
    "default_title": "LED Notifications",
    "default_popup": "html/popup.html"
  },
  "author": "Bhaskar Tiwari",
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "options_ui": {
    "page": "html/options.html",
    "chrome_style": true,
    "open_in_tab": true
  },
  "permissions": [
    "storage"
  ]
}