Amazon Is Burning
Turn your attention to the Amazon that really matters.
Amazon Is Burning란 무엇입니까?
Amazon Is Burning은(는) Jeremiah Johnson / Nullsleep에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Turn your attention to the Amazon that really matters."입니다.
확장 프로그램 스크린샷
Amazon Is Burning 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
To help bring awareness to the devastating fires ravaging the Amazon, the world’s largest rain forest and one of our most important natural resources, we've created a Chrome extension that reminds people about the environmental crisis when they’re least likely to be thinking about it—while shopping on Amazon.com, the world’s largest retailer. Help save one of our most important natural resources by donating and learning more about how your actions can directly impact the rain forest. Creative: Cole Orloff & Jeremiah Johnson Development: Jeremiah Johnson
확장 프로그램 기본 정보
이름 | |
ID | lpmkddgpfdeaibpnmmlbaodoplcefjpp |
공식 URL | https://chromewebstore.google.com/detail/amazon-is-burning/lpmkddgpfdeaibpnmmlbaodoplcefjpp |
설명 | Turn your attention to the Amazon that really matters. |
파일 크기 | 312 KB |
설치 횟수 | 21 |
현재 버전 | 0.1.4 |
최근 업데이트 | 2019-08-28 |
출시 날짜 | 2019-08-28 |
평점 | 4.50/5 총 4 개의 평점 |
개발자 | Jeremiah Johnson / Nullsleep |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.jeremiahjohnson.rip |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Amazon Is Burning", "version": "0.1.4", "description": "Turn your attention to the Amazon that really matters.", "homepage_url": "http:\/\/www.jeremiahjohnson.rip", "author": "Jeremiah Johnson \/ Nullsleep", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/*.amazon.com\/*" ], "js": [ "popup.js" ], "run_at": "document_end" } ], "page_action": { "default_popup": "popup.html", "default_icon": "icon.png" }, "permissions": [ "*:\/\/*.amazon.com\/*", "activeTab", "tabs", "declarativeContent", "storage" ], "web_accessible_resources": [ "fire.gif" ] } |