11Sight

11Sight

This extension allows you to get notifications.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "11Sight",
  "version": "0.4.1",
  "browser_action": {
    "default_icon": "img/11sight-logo.png",
    "default_title": "11sight"
  },
  "icons": {
    "128": "img/11sight-logo.png"
  },
  "permissions": [
    "https://*.11sight.com/",
    "background",
    "notifications",
    "desktopCapture"
  ],
  "background": {
    "scripts": [
      "src/background.js"
    ],
    "persistent": true
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "js": [
        "src/content-script.js"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "matches": [
        "https://*.11sight.com/*"
      ]
    }
  ]
}