Chrome Web Scraper
Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file.
Was ist Chrome Web Scraper?
Chrome Web Scraper ist eine Chrome-Erweiterung, die von dylanrstevens entwickelt wurde, und ihr Hauptmerkmal ist "Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file.".
Erweiterungsscreenshots
Chrome Web Scraper-Erweiterungs-CRX-Datei herunterladen
Laden Sie Chrome Web Scraper-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
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | obhkinejeakgfelofmgbjdenckknmeoc |
Offizielle URL | https://chromewebstore.google.com/detail/chrome-web-scraper/obhkinejeakgfelofmgbjdenckknmeoc |
Beschreibung | Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file. |
Dateigröße | 198 KB |
Installationsanzahl | 56 |
Aktuelle Version | 1.0 |
Letztes Update | 2022-08-07 |
Veröffentlichungsdatum | 2022-08-07 |
Entwickler | dylanrstevens |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/dylanrstevens/chrome-web-scraper |
Unterstützte Sprachen | 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" ] } |