OneCart - Smart Shopping Assistant

OneCart - Smart Shopping Assistant

OneCart is a new smart way to shop online. Save the products you like and keep them in one place.

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__",
  "version": "1.6",
  "default_locale": "en",
  "background": {
    "scripts": [
      "js/jquery-3.3.1.min.js",
      "js/BackgroundScript.js"
    ]
  },
  "browser_action": {
    "default_title": "OneCart - Smart Shopping Assistant"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery-3.3.1.min.js",
        "js/ContentScript.js"
      ]
    }
  ],
  "icons": {
    "128": "images/Logo.png"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "webNavigation",
    "tabs",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "css/inject-popup.css",
    "images/Logo.png"
  ],
  "short_name": "OneCart",
  "content_security_policy": "script-src 'self'; object-src 'self'"
}