Chrome Web Scraper

Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file.

Cos'è Chrome Web Scraper?

Chrome Web Scraper è un'estensione di Chrome sviluppata da dylanrstevens, e la sua funzione principale è "Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Chrome Web Scraper

Scarica i file di estensione Chrome Web Scraper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Chrome Web Scraper Chrome Web Scraper
ID obhkinejeakgfelofmgbjdenckknmeoc
URL Ufficiale https://chromewebstore.google.com/detail/chrome-web-scraper/obhkinejeakgfelofmgbjdenckknmeoc
Descrizione Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file.
Dimensione del File 198 KB
Conteggio Installazioni 56
Versione Corrente 1.0
Ultimo Aggiornamento 2022-08-07
Data di Pubblicazione 2022-08-07
Sviluppatore dylanrstevens
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/dylanrstevens/chrome-web-scraper
Lingue Supportate 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"
    ]
}