Table Scrape

Scrape from tables.

Was ist Table Scrape?

Table Scrape ist eine Chrome-Erweiterung, die von https://claycodes.org entwickelt wurde, und ihr Hauptmerkmal ist "Scrape from tables.".

Erweiterungsscreenshots

screenshot
screenshot

Table Scrape-Erweiterungs-CRX-Datei herunterladen

Laden Sie Table Scrape-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Scrape data to a CSV from paginated tables using a button labeled with "next". 

Github source https://github.com/GoogleChromeLabs/table-scrape.git                    

Grundlegende Informationen zur Erweiterung

Name Table Scrape Table Scrape
ID ocglnchcpdjocppfepejjddgieoodaep
Offizielle URL https://chromewebstore.google.com/detail/table-scrape/ocglnchcpdjocppfepejjddgieoodaep
Beschreibung Scrape from tables.
Dateigröße 44.66 KB
Installationsanzahl 169
Aktuelle Version 0.0.2
Letztes Update 2023-04-14
Veröffentlichungsdatum 2023-04-05
Entwickler https://claycodes.org
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.claycodes.org/google-add-onsextensions/table-scrape
Hilfeseite URL https://www.claycodes.org/google-add-onsextensions/table-scrape
URL der Datenschutzrichtlinien-Seite https://www.claycodes.org/home/privacy-policy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Table Scrape",
    "version": "0.0.2",
    "author": "Clay Smith",
    "short_name": "Table Scrape",
    "default_locale": "en",
    "description": "Scrape from tables.",
    "icons": {
        "19": "images\/19.png",
        "32": "images\/32.png",
        "38": "images\/38.png",
        "36": "images\/36.png",
        "64": "images\/64.png",
        "128": "images\/128.png"
    },
    "permissions": [
        "storage",
        "webNavigation"
    ],
    "host_permissions": [
        "https:\/\/*\/*"
    ],
    "action": {
        "default_icon": {
            "19": "images\/19.png",
            "38": "images\/38.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/*\/*"
            ],
            "exclude_matches": [],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}