blueKiwi Notifier

blueKiwi Notifier

This is an unofficial Chrome extension for use with blueKiwi

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "blueKiwi Notifier",
  "description": "This is an unofficial Chrome extension for use with blueKiwi",
  "version": "2.3.2.1",
  "background": {
    "scripts": [
      "js/common.js",
      "js/jquery.js",
      "js/moment.min.js",
      "js/background.js",
      "js/bootstrap.js"
    ]
  },
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "img/icon48.png",
      "38": "img/icon48.png"
    },
    "default_popup": "popup_default.html",
    "default_title": "blueKiwi Notifier"
  },
  "permissions": [
    "http://*/*",
    "https://*/*",
    "notifications",
    "storage",
    "background"
  ],
  "web_accessible_resources": [
    "img/icon128.png"
  ],
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery.js",
        "js/favico.js",
        "js/content_script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}