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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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"
}