YouTube Comment Exporter
Extracts YouTube comments for exporting to XLS, CSV, or JSON
Wat is YouTube Comment Exporter?
YouTube Comment Exporter is een Chrome-extensie ontwikkeld door Rob Vella, en de belangrijkste functie is "Extracts YouTube comments for exporting to XLS, CSV, or JSON".
Extensie Screenshots
Download het CRX-bestand van de extensie YouTube Comment Exporter
Download YouTube Comment Exporter-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
This is a Chrome Extension that allows you to extract and export comments from a YouTube video into XLS, CSV, or JSON format. Basisinformatie over de Extensie
| Naam | |
| ID | dgjafcfohanpcjdlejlklfcaiodolcdl |
| Officiële URL | https://chromewebstore.google.com/detail/youtube-comment-exporter/dgjafcfohanpcjdlejlklfcaiodolcdl |
| Beschrijving | Extracts YouTube comments for exporting to XLS, CSV, or JSON |
| Bestandsgrootte | 1.02 MB |
| Aantal Installaties | 1,064 |
| Huidige Versie | 1.0.1 |
| Laatst Bijgewerkt | 2016-05-23 |
| Publicatiedatum | 2016-05-23 |
| Beoordeling | 1.00/5 Totaal 7 Beoordelingen |
| Ontwikkelaar | Rob Vella |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/deftx/youtube-comment-exporter |
| Help Pagina-URL | https://github.com/deftx/youtube-comment-exporter |
| Ondersteunde Talen | 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"
} | |