Share-A-Cart

Share-A-Cart

Share-A-Cart allows you to share the contents of your cart with anyone else.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_icon": "/images/sac-16.png",
    "default_title": "Share-A-Cart"
  },
  "background": {
    "service_worker": "/js/background.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "/js/sac.js"
      ],
      "matches": [
        "https://*.share-a-cart.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "externally_connectable": {
    "matches": [
      "https://*.share-a-cart.com/*"
    ]
  },
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "icons": {
    "16": "/images/sac-16.png",
    "64": "/images/sac-64.png",
    "128": "/images/sac-128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "options_ui": {
    "open_in_tab": true,
    "page": "/options_page.html"
  },
  "permissions": [
    "alarms",
    "clipboardWrite",
    "storage",
    "unlimitedStorage",
    "tabs",
    "cookies",
    "activeTab",
    "scripting"
  ],
  "version": "0.7.9",
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "/images/*"
      ]
    }
  ]
}