Table Scrape
Scrape from tables.
Cos'è Table Scrape?
Table Scrape è un'estensione di Chrome sviluppata da https://claycodes.org, e la sua funzione principale è "Scrape from tables.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Table Scrape
Scarica i file di estensione Table Scrape in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Scrape data to a CSV from paginated tables using a button labeled with "next". Github source https://github.com/GoogleChromeLabs/table-scrape.git
Informazioni di Base sull'Estensione
Nome | Table Scrape |
ID | ocglnchcpdjocppfepejjddgieoodaep |
URL Ufficiale | https://chromewebstore.google.com/detail/table-scrape/ocglnchcpdjocppfepejjddgieoodaep |
Descrizione | Scrape from tables. |
Dimensione del File | 44.66 KB |
Conteggio Installazioni | 169 |
Versione Corrente | 0.0.2 |
Ultimo Aggiornamento | 2023-04-14 |
Data di Pubblicazione | 2023-04-05 |
Sviluppatore | https://claycodes.org |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.claycodes.org/google-add-onsextensions/table-scrape |
URL della Pagina di Aiuto | https://www.claycodes.org/google-add-onsextensions/table-scrape |
URL della Pagina della Politica sulla Privacy | https://www.claycodes.org/home/privacy-policy |
Lingue Supportate | 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" } } |