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
电子邮箱 [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"
}