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™ - это расширение Chrome, разработанное https://tabgraf.com, и его основная функция - "Download YouTube live streaming chats as CSV or Excel.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Comment Stack - Save Live Chats for YouTube™

Скачайте файлы расширений Comment Stack - Save Live Chats for YouTube™ в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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\/*"
            ]
        }
    ]
}