bamboo
bamboo helps you find eco-friendly clothing options while browsing your favorite fashion websites.
bamboo란 무엇입니까?
bamboo은(는) itsbambootech에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "bamboo helps you find eco-friendly clothing options while browsing your favorite fashion websites."입니다.
확장 프로그램 스크린샷
bamboo 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Bamboo is a chrome extension which helps you find eco-friendly clothing options while you browse you favorite fashion websites. Find something you like? Let Bamboo search through 10,000 + items to find you something similar from an eco-friendly brand. How Bamboo works: 1. Browse as you normally would on your favorite fashion websites. The BETA currently works on five of the top visited fashion sites. (H&M, Boohoo, NastyGal, Zara, ASOS) More are being added soon. 2. When you see an item you like, click on the Bamboo icon to get recommendations of the same style of clothing from hundreds of ethical and sustainable brands. We search through 250+ brands and more than 10,000 + items to find products that match your style and values. 3. Click on the product you like from our recommendations and proceed to checkout. It's as easy as that! ----- USER DATA POLICY ----- Your privacy is a big deal to us. Bamboo does NOT track or access your general Web History. Bamboo ONLY tracks users on the following five websites: - H&M - Zara - NastyGal - ASOS - Boohoo We can only see the item page you are on and ONLY if you click the Bamboo Icon. This is so that we can find similar looking products for you. Any data gathered through this is strictly confidential and will not be sold. If you have any questions about our User Data Policy, please feel free to message us at [email protected]. We are currently in BETA so please let us know what we can do to make this experience even better for you!! Feel free to email [email protected] with any suggestions, criticism or advice. Remember to share with your friends!!!
확장 프로그램 기본 정보
이름 | bamboo |
ID | kiaihdnhbccalndiamgnlganlaoiamho |
공식 URL | https://chromewebstore.google.com/detail/bamboo/kiaihdnhbccalndiamgnlganlaoiamho |
설명 | bamboo helps you find eco-friendly clothing options while browsing your favorite fashion websites. |
파일 크기 | 759 KB |
설치 횟수 | 74 |
현재 버전 | 2.1.0 |
최근 업데이트 | 2021-04-22 |
출시 날짜 | 2021-02-25 |
평점 | 5.00/5 총 17 개의 평점 |
개발자 | itsbambootech |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://whatsbamboo.com/ |
지원되는 언어 | en-US |
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": { "128": "img\/icon.png", "64": "img\/icon.png", "32": "img\/icon.png", "16": "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" ] } |