YouTube Comment Exporter
Extracts YouTube comments for exporting to XLS, CSV, or JSON
Cos'è YouTube Comment Exporter?
YouTube Comment Exporter è un'estensione di Chrome sviluppata da Rob Vella, e la sua funzione principale è "Extracts YouTube comments for exporting to XLS, CSV, or JSON".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouTube Comment Exporter
Scarica i file di estensione YouTube Comment Exporter 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
This is a Chrome Extension that allows you to extract and export comments from a YouTube video into XLS, CSV, or JSON format. Informazioni di Base sull'Estensione
| Nome | |
| ID | dgjafcfohanpcjdlejlklfcaiodolcdl |
| URL Ufficiale | https://chromewebstore.google.com/detail/youtube-comment-exporter/dgjafcfohanpcjdlejlklfcaiodolcdl |
| Descrizione | Extracts YouTube comments for exporting to XLS, CSV, or JSON |
| Dimensione del File | 1.02 MB |
| Conteggio Installazioni | 1,064 |
| Versione Corrente | 1.0.1 |
| Ultimo Aggiornamento | 2016-05-23 |
| Data di Pubblicazione | 2016-05-23 |
| Valutazione | 1.00/5 Totale 7 Valutazioni |
| Sviluppatore | Rob Vella |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/deftx/youtube-comment-exporter |
| URL della Pagina di Aiuto | https://github.com/deftx/youtube-comment-exporter |
| Lingue Supportate | 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"
} | |