YouTube Comment Exporter

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

YouTube Comment Exporterとは何ですか?

YouTube Comment ExporterはRob Vellaによって開発されたChromeの拡張機能で、その主な機能は「Extracts YouTube comments for exporting to XLS, CSV, or JSON」です。

拡張機能のスクリーンショット

screenshot

YouTube Comment Exporter拡張機能のCRXファイルをダウンロード

YouTube Comment Exporter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 YouTube Comment Exporter YouTube Comment Exporter
ID dgjafcfohanpcjdlejlklfcaiodolcdl
公式URL https://chromewebstore.google.com/detail/youtube-comment-exporter/dgjafcfohanpcjdlejlklfcaiodolcdl
説明 Extracts YouTube comments for exporting to XLS, CSV, or JSON
ファイルサイズ 1.02 MB
インストール数 1,064
現在のバージョン 1.0.1
最終更新日 2016-05-23
公開日 2016-05-23
評価 1.00/5 合計 7 レビュー
開発者 Rob Vella
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/deftx/youtube-comment-exporter
ヘルプページのURL https://github.com/deftx/youtube-comment-exporter
対応言語 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"
}