Chrome Web Scraper
Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file.
Qu'est-ce que Chrome Web Scraper ?
Chrome Web Scraper est une extension Chrome développée par dylanrstevens, et sa fonction principale est "Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Chrome Web Scraper
Téléchargez les fichiers d'extension Chrome Web Scraper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | obhkinejeakgfelofmgbjdenckknmeoc |
URL Officiel | https://chromewebstore.google.com/detail/chrome-web-scraper/obhkinejeakgfelofmgbjdenckknmeoc |
Description | Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file. |
Taille du Fichier | 198 KB |
Nombre d'Installations | 56 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2022-08-07 |
Date de Publication | 2022-08-07 |
Développeur | dylanrstevens |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/dylanrstevens/chrome-web-scraper |
Langues Prises en Charge | 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" ] } |