YouTube Timestamp Comments
An extension that lists timestamp comments on YouTube.
Что такое YouTube Timestamp Comments?
YouTube Timestamp Comments - это расширение Chrome, разработанное Akira Shimizu, и его основная функция - "An extension that lists timestamp comments on YouTube.".
Снимки экрана расширения
Скачать файл CRX расширения YouTube Timestamp Comments
Скачайте файлы расширений YouTube Timestamp Comments в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This is a Google Chrome extension that displays timestamp comments on YouTube. The main features are: - displays timestamp comments - sorts by timestamp - jumps playback position to timestamp --- YouTube の時間指定コメントを表示する Google Chrome 拡張機能です。主な機能は以下の通りです。 - タイムスタンプを含むコメントを表示 - 時間の早い順にソート - タイムスタンプのクリックで再生位置をジャンプ
Основная информация о расширении
Название | YouTube Timestamp Comments |
ID | khngjoedfeicfbjlcfmiigbokbnlibei |
Официальный URL | https://chromewebstore.google.com/detail/youtube-timestamp-comment/khngjoedfeicfbjlcfmiigbokbnlibei |
Описание | An extension that lists timestamp comments on YouTube. |
Размер файла | 914 KB |
Количество установок | 412 |
Текущая Версия | 0.8.2 |
Последнее Обновление | 2022-02-24 |
Дата публикации | 2020-07-01 |
Рейтинг | 4.00/5 Всего 6 оценок |
Разработчик | Akira Shimizu |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/Foo-x/youtube-timestamp-comments |
Поддерживаемые языки | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Timestamp Comments", "version": "0.8.2", "manifest_version": 3, "description": "An extension that lists timestamp comments on YouTube.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "service_worker": "js\/background\/background.js" }, "action": { "default_icon": "icons\/icon19.png", "default_popup": "html\/page_action\/page_action.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch*" ], "js": [ "js\/content_scripts\/contentScript.js" ] } ], "permissions": [ "declarativeContent", "storage", "activeTab", "scripting" ] } |