Youtube Time Marks
Reads Youtube description and creates video time marks.
Youtube Time Marksคืออะไร?
Youtube Time Marks เป็นส่วนขยายของ Chrome ที่พัฒนาโดย RepoGamesStudio และคุณลักษณะหลักของมันคือ "Reads Youtube description and creates video time marks."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Time Marks
ดาวน์โหลดไฟล์ส่วนขยาย Youtube Time Marks ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Usable mostly to long youtube interviews It reads description in the following format: 00:00:00 desc1 00:01:34 desc2 00:01:47 desc3 00:02:44 desc4 ... and creates time marks automatically.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | pphlndhfdfilkemppecnknkefjoolibp |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/youtube-time-marks/pphlndhfdfilkemppecnknkefjoolibp |
คำอธิบาย | Reads Youtube description and creates video time marks. |
ขนาดไฟล์ | 12.05 KB |
จำนวนการติดตั้ง | 11 |
เวอร์ชันปัจจุบัน | 0.0.3 |
อัปเดตครั้งล่าสุด | 2018-06-30 |
วันที่เผยแพร่ | 2018-06-30 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | RepoGamesStudio |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.facebook.com/RepoGames/ |
URL หน้าช่วยเหลือ | https://www.facebook.com/RepoGames/ |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Time Marks", "version": "0.0.3", "description": "Reads Youtube description and creates video time marks.", "manifest_version": 2, "permissions": [ "activeTab", "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/watch*" ], "js": [ "main.js" ], "run_at": "document_idle", "css": [ "styles.css" ] } ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } } |