YOYBUY Taobao/1688 Shopping Assistant
YOYBUY Taobao Extension help you to add items from Taobao.com, Tmall.com and 1688.com to taobao agent: YOYBUY.com
Was ist YOYBUY Taobao/1688 Shopping Assistant?
YOYBUY Taobao/1688 Shopping Assistant ist eine Chrome-Erweiterung, die von https://www.yoybuy.com entwickelt wurde, und ihr Hauptmerkmal ist "YOYBUY Taobao Extension help you to add items from Taobao.com, Tmall.com and 1688.com to taobao agent: YOYBUY.com".
Erweiterungsscreenshots
YOYBUY Taobao/1688 Shopping Assistant-Erweiterungs-CRX-Datei herunterladen
Laden Sie YOYBUY Taobao/1688 Shopping Assistant-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
YOYBUY Taobao/Tmall/1688 Shopping extension is tailored to assistant YOYBUY customers to add items to YOYBUY Shopping cart easily while browsing Taobao,Tmall and 1688. YOYBUY.com, established in 2008, is a leading company which offers one stop Shopping Agent service to purchase and ship Chinese products for global users. Over 50,000,000 items have been purchased and more than 1,000,000 parcels shipped for the past 10 years.
Grundlegende Informationen zur Erweiterung
Name | YOYBUY Taobao/1688 Shopping Assistant |
ID | aamgpllamglhegglhogmfejmeihmnkpb |
Offizielle URL | https://chromewebstore.google.com/detail/yoybuy-taobao1688-shoppin/aamgpllamglhegglhogmfejmeihmnkpb |
Beschreibung | YOYBUY Taobao Extension help you to add items from Taobao.com, Tmall.com and 1688.com to taobao agent: YOYBUY.com |
Dateigröße | 94.2 KB |
Installationsanzahl | 360 |
Aktuelle Version | 1.0.30 |
Letztes Update | 2023-11-23 |
Veröffentlichungsdatum | 2020-01-08 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://www.yoybuy.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.yoybuy.com |
Hilfeseite URL | https://ship.yoybuy.com/helpcenter/one-click-order/ |
URL der Datenschutzrichtlinien-Seite | https://www.yoybuy.com/en/help.html?cateid=3237176 |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YOYBUY Taobao\/1688 Shopping Assistant", "version": "1.0.30", "description": "YOYBUY Taobao Extension help you to add items from Taobao.com, Tmall.com and 1688.com to taobao agent: YOYBUY.com", "action": { "default_icon": "logo.png", "default_popup": "popup.html", "default_title": "YOYBUY" }, "icons": { "128": "logo.png" }, "background": { "service_worker": "background.js" }, "permissions": [ "cookies", "webRequest" ], "host_permissions": [ "*:\/\/*.yoybuy.com\/", "*:\/\/*.taobao.com\/", "*:\/\/*.tmall.com\/", "*:\/\/*.1688.com\/" ], "content_scripts": [ { "matches": [ "*:\/\/s.taobao.com\/search?*" ], "js": [ "lib\/jquery\/jquery.min.js", "lib\/jquery-cookie\/jquery.cookie.min.js", "js\/yoybuy.js", "js\/taobao-search.js" ] }, { "matches": [ "*:\/\/list.tmall.com\/search_product.htm?*" ], "js": [ "lib\/jquery\/jquery.min.js", "lib\/jquery-cookie\/jquery.cookie.min.js", "js\/yoybuy.js", "js\/tmall-search.js" ] }, { "matches": [ "*:\/\/s.1688.com\/selloffer\/offer_search.htm?*" ], "js": [ "lib\/jquery\/jquery.min.js", "lib\/jquery-cookie\/jquery.cookie.min.js", "js\/yoybuy.js", "js\/1688-search.js" ] }, { "matches": [ "*:\/\/item.taobao.com\/item.htm?*" ], "css": [ "iconfont\/iconfont.css", "css\/taobao-item.css", "lib\/alertify\/alertify.css", "lib\/alertify\/default.css", "lib\/dialog\/dialog.css" ], "js": [ "lib\/jquery\/jquery.min.js", "lib\/jquery-cookie\/jquery.cookie.min.js", "lib\/alertify\/alertify.min.js", "js\/yoybuy.js", "js\/dialog.js", "js\/taobao-item.js" ] }, { "matches": [ "*:\/\/detail.tmall.com\/item.htm?*" ], "css": [ "iconfont\/iconfont.css", "css\/taobao-item.css", "lib\/alertify\/alertify.css", "lib\/alertify\/default.css", "lib\/dialog\/dialog.css" ], "js": [ "lib\/jquery\/jquery.min.js", "lib\/jquery-cookie\/jquery.cookie.min.js", "lib\/alertify\/alertify.min.js", "js\/yoybuy.js", "js\/dialog.js", "js\/tmall-item.js" ] }, { "matches": [ "*:\/\/detail.tmall.hk\/item.htm?*" ], "css": [ "iconfont\/iconfont.css", "css\/taobao-item.css", "lib\/alertify\/alertify.css", "lib\/alertify\/default.css", "lib\/dialog\/dialog.css" ], "js": [ "lib\/jquery\/jquery.min.js", "lib\/jquery-cookie\/jquery.cookie.min.js", "lib\/alertify\/alertify.min.js", "js\/yoybuy.js", "js\/dialog.js", "js\/tmall-item.js" ] }, { "matches": [ "*:\/\/detail.1688.com\/offer\/*" ], "css": [ "iconfont\/iconfont.css", "css\/taobao-item.css", "lib\/alertify\/alertify.css", "lib\/alertify\/default.css", "lib\/dialog\/dialog.css", "lib\/dialog\/alertify1688.css" ], "js": [ "lib\/jquery\/jquery.min.js", "lib\/jquery-cookie\/jquery.cookie.min.js", "lib\/alertify\/alertify.min.js", "js\/yoybuy.js", "js\/dialog.js", "js\/1688-item.js" ] } ] } |