Price tracker - Otsledit

Price tracker - Otsledit

Price tracker, web page content tracker.

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_EXTENSION_NAME__",
  "short_name": "__MSG_EXTENSION_SHORT_NAME__",
  "description": "__MSG_EXTENSION_DESCRIPTION__",
  "default_locale": "en",
  "version": "2.3.20",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "contextMenus",
    "notifications",
    "activeTab",
    "unlimitedStorage"
  ],
  "icons": {
    "16": "img/icon.png",
    "128": "img/icon.png"
  },
  "browser_action": {
    "default_title": "Otsledit",
    "default_icon": "img/icon.png",
    "default_popup": "popup.html"
  },
  "options_page": "/dashboard/index.html",
  "web_accessible_resources": [
    "/dashboard/index.html"
  ],
  "content_security_policy": "script-src 'self' object-src 'self'"
}