YouTube Comment Exporter

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

YouTube Comment Exporter क्या है?

YouTube Comment Exporter Rob Vella द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extracts YouTube comments for exporting to XLS, CSV, or JSON"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YouTube Comment Exporter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
}