Softly | Your Sustainable Shopping Assistant

Softly | Your Sustainable Shopping Assistant

Softly makes conscientious shopping simple by suggesting product alternatives based on values that are important to YOU!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Softly makes conscientious shopping simple by suggesting product alternatives based on values that are important to YOU! ",
  "version": "0.1.12",
  "manifest_version": 3,
  "name": "Softly | Your Sustainable Shopping Assistant",
  "icons": {
    "128": "icon-128.png"
  },
  "permissions": [
    "storage"
  ],
  "options_page": "options.html",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.amazon.com/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "icon-128.png",
        "icon-34.png"
      ],
      "matches": []
    }
  ]
}