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文件

下載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 YouTube Timestamp Comments
ID khngjoedfeicfbjlcfmiigbokbnlibei
官方網址 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"
    ]
}