SwipeSwipe

SwipeSwipe

Turn your overspending into wealth and achieve financial freedom

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Turn your overspending into wealth and achieve financial freedom",
  "version": "0.0.19",
  "manifest_version": 3,
  "name": "SwipeSwipe",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "extension_icon_48.png"
  },
  "icons": {
    "16": "extension_icon_16.png",
    "32": "extension_icon_32.png",
    "48": "extension_icon_48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.amazon.com/*",
        "https://www.walmart.com/*",
        "https://www.homedepot.com/*",
        "https://www.target.com/*",
        "https://www.etsy.com/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "host_permissions": [
    "*://*.amazon.com/*",
    "*://*.walmart.com/*",
    "*://*.homedepot.com/*",
    "*://*.target.com/*",
    "*://*.etsy.com/*"
  ],
  "permissions": [
    "storage",
    "cookies"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "swipe-logo.svg",
        "SwipeSwipe_icon.svg"
      ],
      "matches": []
    },
    {
      "resources": [
        "LibreFranklin-Medium.ttf"
      ],
      "matches": [
        "https://www.amazon.com/*",
        "https://www.walmart.com/*",
        "https://www.homedepot.com/*",
        "https://www.target.com/*",
        "https://www.etsy.com/*"
      ]
    }
  ]
}