Chrome Web Scraper
Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file.
Chrome Web Scraper क्या है?
Chrome Web Scraper dylanrstevens द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Chrome Web Scraper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Quickly gather the raw text from a website, and have it automatically parsed and saved to a text file for you. Perfect for developers, or those looking to gather large amounts of real text data efficiently.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | obhkinejeakgfelofmgbjdenckknmeoc |
आधिकारिक URL | https://chromewebstore.google.com/detail/chrome-web-scraper/obhkinejeakgfelofmgbjdenckknmeoc |
विवरण | Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file. |
फ़ाइल का आकार | 198 KB |
स्थापना संख्या | 56 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2022-08-07 |
प्रकाशन तिथि | 2022-08-07 |
डेवलपर | dylanrstevens |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/dylanrstevens/chrome-web-scraper |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Chrome Web Scraper", "version": "1.0", "description": "Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file.", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "background": { "service_worker": "background.js" }, "action": { "default_title": "Chrome Web Scraper", "default_popup": "popup.html" }, "permissions": [ "tabs", "activeTab", "downloads" ] } |