YouTube Comment Exporter

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

O que é YouTube Comment Exporter?

YouTube Comment Exporter é uma extensão do Chrome desenvolvida por Rob Vella, e sua principal característica é "Extracts YouTube comments for exporting to XLS, CSV, or JSON".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão YouTube Comment Exporter

Baixe arquivos de extensão YouTube Comment Exporter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome YouTube Comment Exporter YouTube Comment Exporter
ID dgjafcfohanpcjdlejlklfcaiodolcdl
URL Oficial https://chromewebstore.google.com/detail/youtube-comment-exporter/dgjafcfohanpcjdlejlklfcaiodolcdl
Descrição Extracts YouTube comments for exporting to XLS, CSV, or JSON
Tamanho do Arquivo 1.02 MB
Contagem de Instalações 1,064
Versão Atual 1.0.1
Última Atualização 2016-05-23
Data de Publicação 2016-05-23
Classificação 1.00/5 Total de 7 Avaliações
Desenvolvedor Rob Vella
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/deftx/youtube-comment-exporter
URL da Página de Ajuda https://github.com/deftx/youtube-comment-exporter
Idiomas Suportados 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"
}