Table Scrape

Scrape from tables.

Co je Table Scrape?

Table Scrape je rozšíření Chrome vyvinuté https://claycodes.org, a jeho hlavní funkcí je „Scrape from tables.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Table Scrape

Stáhněte si soubory rozšíření Table Scrape ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

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

Základní Informace o Rozšíření

Název Table Scrape Table Scrape
ID ocglnchcpdjocppfepejjddgieoodaep
Oficiální URL https://chromewebstore.google.com/detail/table-scrape/ocglnchcpdjocppfepejjddgieoodaep
Popis Scrape from tables.
Velikost souboru 44.66 KB
Počet instalací 169
Aktuální Verze 0.0.2
Poslední Aktualizace 2023-04-14
Datum Vydání 2023-04-05
Vývojář https://claycodes.org
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://www.claycodes.org/google-add-onsextensions/table-scrape
URL Stránky Nápovědy https://www.claycodes.org/google-add-onsextensions/table-scrape
URL Stránky Zásad Ochrany Soukromí https://www.claycodes.org/home/privacy-policy
Podporované Jazyky 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"
    }
}