YouTube Comment Exporter

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

Apa itu YouTube Comment Exporter?

YouTube Comment Exporter adalah ekstensi Chrome yang dikembangkan oleh Rob Vella, dan fitur utamanya adalah "Extracts YouTube comments for exporting to XLS, CSV, or JSON".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi YouTube Comment Exporter

Unduh file ekstensi YouTube Comment Exporter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama YouTube Comment Exporter YouTube Comment Exporter
ID dgjafcfohanpcjdlejlklfcaiodolcdl
URL Resmi https://chromewebstore.google.com/detail/youtube-comment-exporter/dgjafcfohanpcjdlejlklfcaiodolcdl
Deskripsi Extracts YouTube comments for exporting to XLS, CSV, or JSON
Ukuran File 1.02 MB
Jumlah Instalasi 1,064
Versi Saat Ini 1.0.1
Terakhir Diperbarui 2016-05-23
Tanggal Publikasi 2016-05-23
Penilaian 1.00/5 Total 7 Penilaian
Pengembang Rob Vella
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/deftx/youtube-comment-exporter
URL Halaman Bantuan https://github.com/deftx/youtube-comment-exporter
Bahasa yang Didukung 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"
}