TableScraper
Allows you to download web tables as .csv files
Was ist TableScraper?
TableScraper ist eine Chrome-Erweiterung, die von JessieCS50 entwickelt wurde, und ihr Hauptmerkmal ist "Allows you to download web tables as .csv files".
Erweiterungsscreenshots
TableScraper-Erweiterungs-CRX-Datei herunterladen
Laden Sie TableScraper-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
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!
Grundlegende Informationen zur Erweiterung
Name | TableScraper |
ID | emkcilhnngffafccblemkljfpkabpapg |
Offizielle URL | https://chromewebstore.google.com/detail/tablescraper/emkcilhnngffafccblemkljfpkabpapg |
Beschreibung | Allows you to download web tables as .csv files |
Dateigröße | 55.5 KB |
Installationsanzahl | 163 |
Aktuelle Version | 1.1 |
Letztes Update | 2020-05-04 |
Veröffentlichungsdatum | 2020-05-04 |
Entwickler | JessieCS50 |
Zahlungsart | free |
Unterstützte Sprachen | 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 } |