Table Scrape
Scrape from tables.
Wat is Table Scrape?
Table Scrape is een Chrome-extensie ontwikkeld door https://claycodes.org, en de belangrijkste functie is "Scrape from tables.".
Extensie Screenshots
Download het CRX-bestand van de extensie Table Scrape
Download Table Scrape-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Scrape data to a CSV from paginated tables using a button labeled with "next". Github source https://github.com/GoogleChromeLabs/table-scrape.git
Basisinformatie over de Extensie
Naam | Table Scrape |
ID | ocglnchcpdjocppfepejjddgieoodaep |
Officiële URL | https://chromewebstore.google.com/detail/table-scrape/ocglnchcpdjocppfepejjddgieoodaep |
Beschrijving | Scrape from tables. |
Bestandsgrootte | 44.66 KB |
Aantal Installaties | 169 |
Huidige Versie | 0.0.2 |
Laatst Bijgewerkt | 2023-04-14 |
Publicatiedatum | 2023-04-05 |
Ontwikkelaar | https://claycodes.org |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://www.claycodes.org/google-add-onsextensions/table-scrape |
Help Pagina-URL | https://www.claycodes.org/google-add-onsextensions/table-scrape |
URL van de Privacybeleid Pagina | https://www.claycodes.org/home/privacy-policy |
Ondersteunde Talen | 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" } } |