Taobao Virtual Cart
This extension works as your Taobao Virtual Cart where you can add items then export them as CSV/EXCEL.
¿Qué es Taobao Virtual Cart?
Taobao Virtual Cart es una extensión de Chrome desarrollada por Automatic & Co, y su función principal es "This extension works as your Taobao Virtual Cart where you can add items then export them as CSV/EXCEL.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Taobao Virtual Cart
Descarga archivos de extensión Taobao Virtual Cart en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Uses: 1- Share the links of items you want to buy with anyone, where they can buy on your behalf; an awesome solution for those who are working with buying agents, online shopping services, proxy buying services, online personal shoppers, etc. 2- Share your taobao.com and tmall.com items with sourcing agents. 3- Collaborate with your family or team members about what items you need to buy. 4- Save the cart information on your local computer to buy them in the future. And many others! The extension exports the file into CSV format, which is similar to the Excel format. If you want to convert the CSV into Excel, you can simply use Microsoft Office Excel to open the CSV file, then click on “save as” and choose the Excel file format you want (likely XLS or XLSX). This extension is FREE to use for everyone forever. The extension runs 100% on your browser/computer. All data are stored on your computer ONLY. We have no access to any data whatsoever. Please feel free to share your thoughts by leaving a review or simply emailing us. We would appreciate your rating and feedback to help us to improve our extension further. All reviews, from 1 to 5 stars, are welcome! * We are NOT affiliated with taobao.com and tmall.com. This extension is independently developed to easily export taobao.com and tmall.com cart data. *This extension works only on taobao.com and tmall.com product detail page. https://github.com/Automatic-Co/Taobao-Virtual-Cart
Información Básica de la Extensión
Nombre | Taobao Virtual Cart |
ID | pcfhocmfkpakpnkgfmjnfllhikoagbfl |
URL Oficial | https://chromewebstore.google.com/detail/taobao-virtual-cart/pcfhocmfkpakpnkgfmjnfllhikoagbfl |
Descripción | This extension works as your Taobao Virtual Cart where you can add items then export them as CSV/EXCEL. |
Tamaño del Archivo | 115 KB |
Cantidad de Instalaciones | 157 |
Versión Actual | 1.3 |
Última Actualización | 2020-12-23 |
Fecha de Publicación | 2020-07-25 |
Calificación | 5.00/5 Total de 22 Calificaciones |
Desarrollador | Automatic & Co |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Política de Privacidad | https://www.freeprivacypolicy.com/live/fd4bffc2-a4c4-4c7c-b814-890cbe999081 |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Taobao Virtual Cart", "description": "This extension works as your Taobao Virtual Cart where you can add items then export them as CSV\/EXCEL.", "version": "1.3", "manifest_version": 2, "icons": { "16": "assets\/images\/cart-16.png", "32": "assets\/images\/cart-32.png", "48": "assets\/images\/cart-48.png", "128": "assets\/images\/cart-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/item.taobao.com\/*", "https:\/\/detail.tmall.com\/*", "http:\/\/item.taobao.com\/*", "http:\/\/detail.tmall.com\/*" ], "css": [ "assets\/css\/style.css" ], "js": [ "assets\/js\/jquery.min.js", "assets\/js\/jquery.cookie.js", "assets\/js\/custom.js", "assets\/js\/detail.tmall.js", "assets\/js\/item.taobao.js" ] } ], "browser_action": { "default_icon": { "16": "assets\/images\/cart-16.png", "32": "assets\/images\/cart-32.png", "48": "assets\/images\/cart-48.png", "128": "assets\/images\/cart-128.png" }, "default_popup": "index.html" }, "background": { "scripts": [ "assets\/js\/jquery.min.js", "assets\/js\/background.js" ] }, "permissions": [ "cookies", "https:\/\/item.taobao.com\/*", "https:\/\/detail.tmall.com\/*", "http:\/\/item.taobao.com\/*", "http:\/\/detail.tmall.com\/*" ] } |