YouTube Comment Exporter
Extracts YouTube comments for exporting to XLS, CSV, or JSON
Was ist YouTube Comment Exporter?
YouTube Comment Exporter ist eine Chrome-Erweiterung, die von Rob Vella entwickelt wurde, und ihr Hauptmerkmal ist "Extracts YouTube comments for exporting to XLS, CSV, or JSON".
Erweiterungsscreenshots
YouTube Comment Exporter-Erweiterungs-CRX-Datei herunterladen
Laden Sie YouTube Comment Exporter-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
This is a Chrome Extension that allows you to extract and export comments from a YouTube video into XLS, CSV, or JSON format. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | dgjafcfohanpcjdlejlklfcaiodolcdl |
| Offizielle URL | https://chromewebstore.google.com/detail/youtube-comment-exporter/dgjafcfohanpcjdlejlklfcaiodolcdl |
| Beschreibung | Extracts YouTube comments for exporting to XLS, CSV, or JSON |
| Dateigröße | 1.02 MB |
| Installationsanzahl | 1,064 |
| Aktuelle Version | 1.0.1 |
| Letztes Update | 2016-05-23 |
| Veröffentlichungsdatum | 2016-05-23 |
| Bewertung | 1.00/5 Insgesamt 7 Bewertungen |
| Entwickler | Rob Vella |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/deftx/youtube-comment-exporter |
| Hilfeseite URL | https://github.com/deftx/youtube-comment-exporter |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"content_scripts": [
{
"all_frames": true,
"js": [
"lib\/FileSaver.js",
"lib\/xlsx.core.min.js",
"lib\/jquery.min.js",
"content_script.js"
],
"matches": [
"https:\/\/www.youtube.com\/*"
],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"activeTab",
"https:\/\/www.youtube.com\/*",
"storage"
],
"description": "Extracts YouTube comments for exporting to XLS, CSV, or JSON",
"homepage_url": "http:\/\/github.com\/deftx\/youtube-comment-exporter",
"icons": {
"48": "img\/yte48.png",
"128": "img\/yte128.png"
},
"page_action": {
"default_title": "Export comments",
"default_popup": "popup.html"
},
"manifest_version": 2,
"name": "YouTube Comment Exporter",
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"version": "1.0.1"
} | |