YouTube Comment Exporter

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

ما هو YouTube Comment Exporter؟

YouTube Comment Exporter هو إضافة Chrome تم تطويرها بواسطة Rob Vella، والميزة الرئيسية لها هي "Extracts YouTube comments for exporting to XLS, CSV, or JSON".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة YouTube Comment Exporter

قم بتنزيل ملفات الامتداد YouTube Comment Exporter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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"
}