YouTube Comment Exporter

Extracts YouTube comments for exporting to XLS, CSV, or JSON

¿Qué es YouTube Comment Exporter?

YouTube Comment Exporter es una extensión de Chrome desarrollada por Rob Vella, y su función principal es "Extracts YouTube comments for exporting to XLS, CSV, or JSON".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión YouTube Comment Exporter

Descarga archivos de extensión YouTube Comment Exporter en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        This is a Chrome Extension that allows you to extract and export comments from a YouTube video into XLS, CSV, or JSON format.                    

Información Básica de la Extensión

Nombre YouTube Comment Exporter YouTube Comment Exporter
ID dgjafcfohanpcjdlejlklfcaiodolcdl
URL Oficial https://chromewebstore.google.com/detail/youtube-comment-exporter/dgjafcfohanpcjdlejlklfcaiodolcdl
Descripción Extracts YouTube comments for exporting to XLS, CSV, or JSON
Tamaño del Archivo 1.02 MB
Cantidad de Instalaciones 1,064
Versión Actual 1.0.1
Última Actualización 2016-05-23
Fecha de Publicación 2016-05-23
Calificación 1.00/5 Total de 7 Calificaciones
Desarrollador Rob Vella
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/deftx/youtube-comment-exporter
URL de la Página de Ayuda https://github.com/deftx/youtube-comment-exporter
Idiomas Soportados 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"
}