My Simple Wishlist for Edge

My Simple Wishlist for Edge

Handy storage of your shopping wishlist / wishlists in the browser, simple as it can be.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "homepage_url": "https://productstories.pro/my-simple-wishlist/",
  "description": "__MSG_extDesc__",
  "default_locale": "en",
  "permissions": [
    "activeTab",
    "storage",
    "<all_urls>",
    "*://*/*"
  ],
  "icons": {
    "16": "icons/msl16.png",
    "48": "icons/msl48.png",
    "128": "icons/msl128.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_extName__",
    "default_icon": {
      "19": "icons/msl19.png",
      "38": "icons/msl38.png"
    }
  },
  "content_scripts": [
    {
      "js": [
        "js/content-script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "version": "1.0.0",
  "content_security_policy": "script-src 'self' ; object-src 'self'",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}