Your notifier

Your notifier

Helps to monitor changes on different web-pages, notifies about changes

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "short_name": "YoN",
  "version": "1.0.10",
  "browser_action": {
    "default_icon": "img/icon32x32.png",
    "default_popup": "popup.html",
    "default_title": "Your notifier"
  },
  "background": {
    "scripts": [
      "lib/jquery-2.0.3.min.js",
      "lib/jquery-2.0.3.min.map",
      "lib/underscore-min.js",
      "js/common.js",
      "js/urlChecker.js",
      "js/updateSchedule.js",
      "js/dialog/eventPage.js",
      "js/notification.js",
      "js/storage/storageLocal.js",
      "js/storage/storageSync.js",
      "js/storage/ruleStorage.js",
      "js/storage/storageUtils.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "img/icon16x16.png",
    "48": "img/icon48x48.png",
    "128": "img/icon128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "/css/dialog.css"
      ],
      "js": [
        "lib/jquery-2.0.3.min.js",
        "lib/jquery-ui-1.10.3.min.js",
        "lib/selectorator.min.js",
        "js/common.js",
        "js/dialog/contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "dialog.html",
    "img/load.gif"
  ],
  "permissions": [
    "<all_urls>",
    "storage",
    "alarms",
    "tabs",
    "notifications",
    "contextMenus"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}