TableScraper

Allows you to download web tables as .csv files

Co to jest TableScraper?

TableScraper to rozszerzenie Chrome opracowane przez JessieCS50, a jego główną funkcją jest „Allows you to download web tables as .csv files”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia TableScraper

Pobierz pliki rozszerzeń TableScraper 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

                        Automatically finds tables in web pages and adds "Download as csv" buttons so you can easily collect data without the need for copy and paste. "I wish I could download this as a csv" - now you can!                    

Podstawowe informacje o rozszerzeniu

Nazwa TableScraper TableScraper
ID emkcilhnngffafccblemkljfpkabpapg
Oficjalny URL https://chromewebstore.google.com/detail/tablescraper/emkcilhnngffafccblemkljfpkabpapg
Opis Allows you to download web tables as .csv files
Rozmiar pliku 55.5 KB
Liczba instalacji 163
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2020-05-04
Data Publikacji 2020-05-04
Deweloper JessieCS50
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TableScraper",
    "version": "1.1",
    "description": "Allows you to download web tables as .csv files",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        }
    },
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "permissions": [
        "activeTab",
        "declarativeContent"
    ],
    "manifest_version": 2
}