AliAutomator
Scrape shops and products including images from aliexpress.com as JSON or CSV.
什麼是AliAutomator?
AliAutomator是由/* no comment */開發的Chrome擴展程式,該擴展的主要功能是“Scrape shops and products including images from aliexpress.com as JSON or CSV.”。
擴展截圖
下載AliAutomator擴展crx文件
下載AliAutomator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | |
ID | pkjpogcicelbfhhonkfohgmmbdimikfn |
官方網址 | https://chrome.google.com/webstore/detail/aliautomator/pkjpogcicelbfhhonkfohgmmbdimikfn |
簡介 | Scrape shops and products including images from aliexpress.com as JSON or CSV. |
檔案大小 | 119 KB |
安裝次數 | 167 |
目前版本 | 1.0 |
更新時間 | 2018-07-17 |
上架時間 | 2018-07-17 |
評分 | 1.00/5 共 1 次評分 |
開發者 | /* no comment */ |
付費類型 | free |
支援的語言 | 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" ] } |