YouTube Comment Exporter

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

What is YouTube Comment Exporter?

YouTube Comment Exporter is a Chrome extension developed by Rob Vella, and its main feature is "Extracts YouTube comments for exporting to XLS, CSV, or JSON".

Extension Screenshots

screenshot

Download YouTube Comment Exporter Extension CRX File

Download YouTube Comment Exporter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name YouTube Comment Exporter YouTube Comment Exporter
ID dgjafcfohanpcjdlejlklfcaiodolcdl
Official URL https://chromewebstore.google.com/detail/youtube-comment-exporter/dgjafcfohanpcjdlejlklfcaiodolcdl
Description Extracts YouTube comments for exporting to XLS, CSV, or JSON
File Size 1.02 MB
Installation Count 1,064
Current Version 1.0.1
Last Updated 2016-05-23
Publish Date 2016-05-23
Rating 1.00/5 Total 7 Ratings
Developer Rob Vella
Email [email protected]
Payment Type free
Extension Website https://github.com/deftx/youtube-comment-exporter
Help Page URL https://github.com/deftx/youtube-comment-exporter
Supported Languages 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"
}