AliAutomator
Scrape shops and products including images from aliexpress.com as JSON or CSV.
Τι είναι το AliAutomator;
Το AliAutomator είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον /* no comment */, και η κύρια λειτουργία του είναι "Scrape shops and products including images from aliexpress.com as JSON or CSV.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης AliAutomator
Λήψη αρχείων επέκτασης 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 |
Επίσημο URL | 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" ] } |