AliAutomator
Scrape shops and products including images from aliexpress.com as JSON or CSV.
AliAutomator क्या है?
AliAutomator /* no comment */ द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Scrape shops and products including images from aliexpress.com as JSON or CSV."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में AliAutomator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } |