AliAutomator
Scrape shops and products including images from aliexpress.com as JSON or CSV.
Was ist AliAutomator?
AliAutomator ist eine Chrome-Erweiterung, die von /* no comment */ entwickelt wurde, und ihr Hauptmerkmal ist "Scrape shops and products including images from aliexpress.com as JSON or CSV.".
Erweiterungsscreenshots
AliAutomator-Erweiterungs-CRX-Datei herunterladen
Laden Sie AliAutomator-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
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
Grundlegende Informationen zur Erweiterung
Name | |
ID | pkjpogcicelbfhhonkfohgmmbdimikfn |
Offizielle URL | https://chrome.google.com/webstore/detail/aliautomator/pkjpogcicelbfhhonkfohgmmbdimikfn |
Beschreibung | Scrape shops and products including images from aliexpress.com as JSON or CSV. |
Dateigröße | 119 KB |
Installationsanzahl | 167 |
Aktuelle Version | 1.0 |
Letztes Update | 2018-07-17 |
Veröffentlichungsdatum | 2018-07-17 |
Bewertung | 1.00/5 Insgesamt 1 Bewertungen |
Entwickler | /* no comment */ |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |