Comment Stack - Save Live Chats for YouTube™

Download YouTube live streaming chats as CSV or Excel.

Comment Stack - Save Live Chats for YouTube™란 무엇입니까?

Comment Stack - Save Live Chats for YouTube™은(는) https://tabgraf.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download YouTube live streaming chats as CSV or Excel."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Comment Stack - Save Live Chats for YouTube™ 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Download chats from the YouTube™ live streaming video as CSV or Excel file. Simply click the "Save Chat" toggle button to save the chats. 
Main features includes
 
1. Save the chats as CSV or Excel file
2. It supports unicode characters
3. Randomly pick a user from the chat                    

확장 프로그램 기본 정보

이름 Comment Stack - Save Live Chats for YouTube™ Comment Stack - Save Live Chats for YouTube™
ID bcclhcedlelimlnmcpfeiabljbpahnef
공식 URL https://chromewebstore.google.com/detail/comment-stack-save-live-c/bcclhcedlelimlnmcpfeiabljbpahnef
설명 Download YouTube live streaming chats as CSV or Excel.
파일 크기 398 KB
설치 횟수 6,728
현재 버전 2.13
최근 업데이트 2024-03-03
출시 날짜 2018-05-12
평점 2.89/5 총 47 개의 평점
개발자 https://tabgraf.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://tabgraf.com/products/comment-stack
개인정보 보호 정책 페이지 URL https://tabgraf.com/products/comment-stack/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Comment Stack - Save Live Chats for YouTube\u2122",
    "description": "Download YouTube live streaming chats as CSV or Excel.",
    "version": "2.13",
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "css": [
                "css\/main.css"
            ],
            "js": [
                "js\/lib\/exceljs.js",
                "js\/lib\/jquery.js",
                "js\/lib\/filesaver.js",
                "js\/common\/env.js",
                "js\/common\/utils\/utilities.js",
                "js\/content-script.js",
                "js\/subscription-modals\/quota-exceeded.js"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_icon": {
            "16": "img\/icon.png",
            "48": "img\/icon.png",
            "128": "img\/icon.png"
        },
        "default_popup": "pages\/popup.html"
    },
    "icons": {
        "48": "img\/icon.png",
        "128": "img\/icon.png"
    },
    "permissions": [
        "identity",
        "identity.email",
        "tabs",
        "storage",
        "unlimitedStorage"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "img\/icon.png",
                "img\/btn-light.png"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ]
}