YouTube Timestamp Comments

An extension that lists timestamp comments on YouTube.

YouTube Timestamp Comments란 무엇입니까?

YouTube Timestamp Comments은(는) Akira Shimizu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension that lists timestamp comments on YouTube."입니다.

확장 프로그램 스크린샷

screenshot

YouTube Timestamp Comments 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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 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"
    ]
}