DoWebScraper
Turn structured HTML into a CSV or a TXT file.
DoWebScraper क्या है?
DoWebScraper http://quotinue.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Turn structured HTML into a CSV or a TXT file."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में DoWebScraper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Dead simple web scraper for data. You drop in a CSS selector and you get a table of data that you can download to a text or CSV file. I was looking for a dead simple scraper that just did what it was supposed to do without annoying me. None existed anymore so I decided to make my own. Do not expect fancy features but feel free to email me with new ideas. 1.0.3 improves the layout of the app itself and adds a "Clear" function.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | knkolhdlegaanmhhlbknpelfmjlbfmkk |
आधिकारिक URL | https://chrome.google.com/webstore/detail/dowebscraper/knkolhdlegaanmhhlbknpelfmjlbfmkk |
विवरण | Turn structured HTML into a CSV or a TXT file. |
फ़ाइल का आकार | 32.72 KB |
स्थापना संख्या | 843 |
वर्तमान संस्करण | 1.0.3 |
अंतिम अपडेट | 2019-04-12 |
प्रकाशन तिथि | 2019-04-12 |
डेवलपर | http://quotinue.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.quotinue.com/introducing-dowebscraper/ |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "DoWebScraper", "description": "Turn structured HTML into a CSV or a TXT file.", "version": "1.0.3", "browser_action": { "default_icon": "ScraperLogo.png", "default_title": "DoWebScraper" }, "background": { "scripts": [ "mybackground.js" ] }, "web_accessible_resources": [ "page.html" ], "permissions": [ "tabs", "activeTab", "pageCapture" ], "icons": { "16": "logo16.png", "48": "logo48.png", "128": "logo128.png" } } |