YouTube video timestamps
Displays YouTube video timecodes from descriptions and comments.
YouTube video timestampsคืออะไร?
YouTube video timestamps เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Roman Sadovnikov และคุณลักษณะหลักของมันคือ "Displays YouTube video timecodes from descriptions and comments."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube video timestamps
ดาวน์โหลดไฟล์ส่วนขยาย YouTube video timestamps ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
If there are timecodes in the description or comments to a YouTube video, the extension catches them and displays them under the video. So far, the extension only shows the timecodes that you have opened on your computer.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouTube video timestamps |
ID | fkcajpjelgilnhhadfpchooafgdjacpn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-video-timestamps/fkcajpjelgilnhhadfpchooafgdjacpn |
คำอธิบาย | Displays YouTube video timecodes from descriptions and comments. |
ขนาดไฟล์ | 25.97 KB |
จำนวนการติดตั้ง | 20 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2021-04-12 |
วันที่เผยแพร่ | 2021-04-12 |
ผู้พัฒนา | Roman Sadovnikov |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | id,ms,de,en,en-GB,en-US,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,hr,hu,pl,sk,sl,fi,sv,cs,el,sr,bg,iw,fa,mr,hi,bn,gu,ta,te,ml,th,am-ET,ar |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "icons": { "128": "\/icon.png" }, "manifest_version": 2, "background": { "scripts": [ "\/js\/chrome.js" ] }, "permissions": [ "https:\/\/*.youtube.com\/*" ], "name": "YouTube video timestamps", "default_locale": "en", "description": "Displays YouTube video timecodes from descriptions and comments.", "browser_action": { "default_icon": "\/icon.png", "default_popup": "\/options.html" }, "content_scripts": [ { "all_frames": true, "css": [ "\/styles\/page_styles.css" ], "js": [ "\/js\/content.js" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ], "web_accessible_resources": [ "styles\/*.css", "*.js" ], "version": "1.0" } |