Prickle - Price Checker

Prickle - Price Checker

Prickle lets you track the prices of products online on any online store!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Prickle - Price Checker",
  "short_name": "Prickle",
  "description": "Prickle lets you track the prices of products online on any online store!",
  "author": "Start Matter",
  "version": "1.6",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "core/he.js",
        "core/currency-match.js",
        "core/models/product.model.js",
        "core/globals.js",
        "core/notifications.js",
        "core/helpers.js",
        "core/parsing-rules.js",
        "app.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "user/js/lib/jquery.min.js",
      "core/globals.js",
      "core/currency-match.js",
      "core/models/product.model.js",
      "background/hot-reload.js",
      "core/page-loader.js",
      "core/parsing-rules.js",
      "core/parser.js",
      "core/worker.js",
      "core/notifications.js",
      "core/storage.js",
      "core/helpers.js",
      "background/background.js"
    ]
  },
  "web_accessible_resources": [
    "options/options.html",
    "user/*"
  ],
  "browser_action": {
    "default_popup": "popup/popup.html"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "notifications",
    "alarms",
    "<all_urls>"
  ],
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "options_page": "options/options.html"
}