Amazon One Click Buy
This extension will autobuy your product on just a single click event.
Amazon One Click Buy란 무엇입니까?
Amazon One Click Buy은(는) WellWishers에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will autobuy your product on just a single click event."입니다.
확장 프로그램 스크린샷
Amazon One Click Buy 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Hi, we back with another amazon tool, This one is little simple, in which you can just buy your product with a single click. Feel free to write your thoughts on this tool. Thanks!!
확장 프로그램 기본 정보
이름 | Amazon One Click Buy |
ID | idphmhooafacghmfgdbllfagdnoalaki |
공식 URL | https://chromewebstore.google.com/detail/amazon-one-click-buy/idphmhooafacghmfgdbllfagdnoalaki |
설명 | This extension will autobuy your product on just a single click event. |
파일 크기 | 19.65 KB |
설치 횟수 | 127 |
현재 버전 | 1.2 |
최근 업데이트 | 2023-02-01 |
출시 날짜 | 2022-05-06 |
개발자 | WellWishers |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Amazon One Click Buy", "description": "This extension will autobuy your product on just a single click event.", "version": "1.2", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "tabs" ], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.amazon.in\/*", "https:\/\/www.amazon.com\/*", "https:\/\/www.amazon.ca\/*", "https:\/\/www.amazon.co.uk\/*", "https:\/\/www.amazon.com.au\/*", "https:\/\/www.amazon.fr\/*", "https:\/\/www.amazon.de\/*", "https:\/\/www.amazon.cn\/*", "https:\/\/www.amazon.co.jp\/", "https:\/\/www.amazon.it\/", "https:\/\/www.amazon.es\/", "https:\/\/www.amazon.com.mx\/" ], "all_frames": true, "run_at": "document_end", "js": [ "custom_script.js" ] } ] } |