Chrome Web Scraper
Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file.
Vad är Chrome Web Scraper?
Chrome Web Scraper är en Chrome-tillägg utvecklad av dylanrstevens, och dess huvudfunktion är "Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file.".
Tilläggsskärmbilder
Ladda ner Chrome Web Scraper-förlängningens CRX-fil
Ladda ner Chrome Web Scraper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | obhkinejeakgfelofmgbjdenckknmeoc |
Officiell webbadress | https://chromewebstore.google.com/detail/chrome-web-scraper/obhkinejeakgfelofmgbjdenckknmeoc |
Beskrivning | Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file. |
Filstorlek | 198 KB |
Antal Installationer | 56 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2022-08-07 |
Publiceringsdatum | 2022-08-07 |
Utvecklare | dylanrstevens |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/dylanrstevens/chrome-web-scraper |
Stödda Språk | 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" ] } |