AliAutomator
Scrape shops and products including images from aliexpress.com as JSON or CSV.
AliAutomator là gì?
AliAutomator là một tiện ích mở rộng Chrome được phát triển bởi /* no comment */, và tính năng chính của nó là "Scrape shops and products including images from aliexpress.com as JSON or CSV.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng AliAutomator
Tải xuống các tệp mở rộng AliAutomator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
AliAutomator scrapes shop and product data including shipping from aliexpress.com. Open a shop or product url, click the red icon and everything important gets scraped from the page. Features - Export as JSON - Export as CSV - Image bulk download - Reverse image search. - Product ratings by country The following infos are picked from the settings you've choosen on the website. Change them there. - Shipping destination - Language - Currency Bugs, Feedback, whatever https://docs.google.com/forms/d/e/1FAIpQLSdUF0P_H-a7rECUsfC5PtpsIAfpUpx-7bO2Yylx5pUiZKPWpA/viewform
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | pkjpogcicelbfhhonkfohgmmbdimikfn |
URL Chính Thức | https://chrome.google.com/webstore/detail/aliautomator/pkjpogcicelbfhhonkfohgmmbdimikfn |
Mô tả | Scrape shops and products including images from aliexpress.com as JSON or CSV. |
Kích Thước Tệp | 119 KB |
Số Lần Cài Đặt | 167 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2018-07-17 |
Ngày Phát Hành | 2018-07-17 |
Đánh Giá | 1.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | /* no comment */ |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "AliAutomator", "short_name": "AliAutomator", "author": "AliAutomator", "version": "1.0", "description": "Scrape shops and products including images from aliexpress.com as JSON or CSV.", "manifest_version": 2, "options_page": "pages\/options.html", "icons": { "16": "img\/16x16.png", "48": "img\/48x48.png", "128": "img\/128x128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.aliexpress.com\/*" ], "js": [ "js\/helper.js", "js\/content.js" ] } ], "background": { "persistent": false, "scripts": [ "js\/helper.js", "js\/background.js", "js\/searchbyimage.js" ] }, "permissions": [ "tabs", "downloads", "contextMenus", "storage", "https:\/\/*.aliexpress.com\/*", "https:\/\/*\/*", "http:\/\/*\/*" ], "browser_action": { "default_popup": "pages\/popup.html" }, "web_accessible_resources": [ "js\/inject.js" ] } |