YouTube Timestamp Comments
An extension that lists timestamp comments on YouTube.
Co to jest YouTube Timestamp Comments?
YouTube Timestamp Comments to rozszerzenie Chrome opracowane przez Akira Shimizu, a jego główną funkcją jest „An extension that lists timestamp comments on YouTube.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia YouTube Timestamp Comments
Pobierz pliki rozszerzeń YouTube Timestamp Comments w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 拡張機能です。主な機能は以下の通りです。 - タイムスタンプを含むコメントを表示 - 時間の早い順にソート - タイムスタンプのクリックで再生位置をジャンプ
Podstawowe informacje o rozszerzeniu
Nazwa | YouTube Timestamp Comments |
ID | khngjoedfeicfbjlcfmiigbokbnlibei |
Oficjalny URL | https://chromewebstore.google.com/detail/youtube-timestamp-comment/khngjoedfeicfbjlcfmiigbokbnlibei |
Opis | An extension that lists timestamp comments on YouTube. |
Rozmiar pliku | 914 KB |
Liczba instalacji | 412 |
Aktualna Wersja | 0.8.2 |
Ostatnia Aktualizacja | 2022-02-24 |
Data Publikacji | 2020-07-01 |
Ocena | 4.00/5 Łącznie 6 Oceny |
Deweloper | Akira Shimizu |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/Foo-x/youtube-timestamp-comments |
Obsługiwane Języki | 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" ] } |