bamboo

bamboo

bamboo helps you find eco-friendly clothing options while browsing your favorite fashion websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "bamboo",
  "description": "bamboo helps you find eco-friendly clothing options while browsing your favorite fashion websites.",
  "version": "2.1.0",
  "icons": {
    "16": "img/icon.png",
    "32": "img/icon.png",
    "64": "img/icon.png",
    "128": "img/icon.png"
  },
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_popup": "html/popup.html"
  },
  "background": {
    "persistent": false,
    "page": "html/background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.boohoo.com/*",
        "https://www.nastygal.com/*",
        "https://www2.hm.com/*",
        "https://www.zara.com/*",
        "https://www.asos.com/*"
      ],
      "js": [
        "js/jquery.js",
        "js/jquery-ui.js",
        "js/contentscript.js"
      ],
      "css": [],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "audio/notification_sound.mp3"
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "storage"
  ]
}