Amazon One Click Buy
This extension will autobuy your product on just a single click event.
Vad är Amazon One Click Buy?
Amazon One Click Buy är en Chrome-tillägg utvecklad av WellWishers, och dess huvudfunktion är "This extension will autobuy your product on just a single click event.".
Tilläggsskärmbilder
Ladda ner Amazon One Click Buy-förlängningens CRX-fil
Ladda ner Amazon One Click Buy-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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!! Grundläggande Information om Tillägg
| Namn | |
| ID | idphmhooafacghmfgdbllfagdnoalaki |
| Officiell webbadress | https://chromewebstore.google.com/detail/amazon-one-click-buy/idphmhooafacghmfgdbllfagdnoalaki |
| Beskrivning | This extension will autobuy your product on just a single click event. |
| Filstorlek | 19.65 KB |
| Antal Installationer | 127 |
| Aktuell Version | 1.2 |
| Senast Uppdaterad | 2023-02-01 |
| Publiceringsdatum | 2022-05-06 |
| Utvecklare | WellWishers |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
]
}
]
} | |