Reclaim the Amazon
Show photos of the Amazon when browsing to Amazon.com
Reclaim the Amazon란 무엇입니까?
Reclaim the Amazon은(는) What matters에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show photos of the Amazon when browsing to Amazon.com"입니다.
확장 프로그램 스크린샷
Reclaim the Amazon 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Learn more about the Amazon forest, view gorgeous photos and shop less! We show you beautiful photos of the Amazon when browsing to Amazon.com (or it's international domains). You're always in control, and can set the time you want to spend on Amazon.com without seeing our photos. Project by: Olya Irzak, Tilek Mamutov, Pasha Tsier, Witnesses of Climatology
확장 프로그램 기본 정보
이름 | |
ID | homocecfbbmmljacijppegoeipleelci |
공식 URL | https://chrome.google.com/webstore/detail/homocecfbbmmljacijppegoeipleelci |
설명 | Show photos of the Amazon when browsing to Amazon.com |
파일 크기 | 86.27 KB |
설치 횟수 | 31 |
현재 버전 | 1.2 |
최근 업데이트 | 2019-03-21 |
출시 날짜 | 2019-03-21 |
평점 | 5.00/5 총 5 개의 평점 |
개발자 | What matters |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Reclaim the Amazon", "version": "1.2", "description": "Show photos of the Amazon when browsing to Amazon.com", "permissions": [ "activeTab", "storage" ], "icons": { "16": "tree_16.png", "48": "tree_48.png", "128": "tree_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.amazon.com\/*", "https:\/\/smile.amazon.com\/*", "https:\/\/www.amazon.ca\/*", "https:\/\/www.amazon.com.au\/*", "https:\/\/www.amazon.com.br\/*", "https:\/\/www.amazon.in\/*", "https:\/\/www.amazon.fr\/*", "https:\/\/www.amazon.de\/*", "https:\/\/smile.amazon.de\/*", "https:\/\/www.amazon.nl\/*", "https:\/\/www.amazon.co.uk\/*", "https:\/\/smile.amazon.co.uk\/*" ], "run_at": "document_start", "js": [ "contentscript.js" ], "css": [ "amazon.css" ] } ], "manifest_version": 2, "web_accessible_resources": [ "images\/*.png" ] } |