Chrome Web Scraper

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

Co to jest Chrome Web Scraper?

Chrome Web Scraper to rozszerzenie Chrome opracowane przez dylanrstevens, a jego główną funkcją jest „Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Chrome Web Scraper

Pobierz pliki rozszerzeń Chrome Web Scraper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Chrome Web Scraper Chrome Web Scraper
ID obhkinejeakgfelofmgbjdenckknmeoc
Oficjalny URL https://chromewebstore.google.com/detail/chrome-web-scraper/obhkinejeakgfelofmgbjdenckknmeoc
Opis Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file.
Rozmiar pliku 198 KB
Liczba instalacji 56
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2022-08-07
Data Publikacji 2022-08-07
Deweloper dylanrstevens
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/dylanrstevens/chrome-web-scraper
Obsługiwane Języki 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"
    ]
}