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."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ 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 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"
    ]
}