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文件
下载Amazon One Click Buy扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" ] } ] } |