Share-A-Cart for Walmart

Share-A-Cart for Walmart

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

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "js/jquery-3.4.1.min.js",
      "browser-js/chrome.api.js",
      "lib/strip-headers.js",
      "lib/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/walmart-cart-64.png",
    "default_popup": "popup.html",
    "default_title": "Share-A-Cart for Walmart"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "lib/injects/inject-cart.js"
      ],
      "matches": [
        "https://www.walmart.com/cart*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "lib/injects/inject-add-cart.js"
      ],
      "matches": [
        "https://affil.walmart.com/cart/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "lib/injects/sac-get.js"
      ],
      "matches": [
        "https://*.share-a-cart.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "Share-A-Cart for Walmart allows you to share the contents of your cart with anyone else.",
  "icons": {
    "16": "images/walmart-cart-16.png",
    "64": "images/walmart-cart-64.png",
    "128": "images/walmart-cart-128.png"
  },
  "manifest_version": 2,
  "name": "Share-A-Cart for Walmart",
  "permissions": [
    "clipboardWrite",
    "storage",
    "unlimitedStorage",
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "https://share-a-cart.com/*",
    "https://crtsh.net/*",
    "https://*.walmart.com/*"
  ],
  "version": "2.0.15",
  "browser_specific_settings": {
    "gecko": {
      "id": "@share-a-cart-for-walmart"
    }
  }
}