ShippingCart Shop Assist

Get better deals, easily compute shipping costs, and check out with your US, UK, AU, KR, or JP shipping address
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ShippingCart Shop Assist",
  "short_name": "ShippingCart Shop Assist",
  "description": "Get better deals, easily compute shipping costs, and check out with your US, UK, AU, KR, or JP shipping address",
  "version": "1.0.32",
  "manifest_version": 2,
  "browser_action": {
    "default_title": "ShippingCart Shop Assist",
    "default_icon": {
      "16": "assets/icons/sc-icon-disabled.png",
      "24": "assets/icons/[email protected]",
      "32": "assets/icons/[email protected]"
    }
  },
  "background": {
    "persistent": true,
    "scripts": [
      "static/js/background.js"
    ]
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "content_scripts": [
    {
      "css": [
        "static/css/content.css"
      ],
      "js": [
        "static/js/content.js"
      ],
      "run_at": "document_end",
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "web_accessible_resources": [
    "assets/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "icons": {
    "16": "assets/icons/icon16.png",
    "48": "assets/icons/icon48.png",
    "128": "assets/icons/icon128.png"
  }
}