YouTube progress in tab (favicon)
Shows the progress of the video as a bar in the tab by changing the favicon. It also shows if the video is playing or is paused
YouTube progress in tab (favicon)คืออะไร?
YouTube progress in tab (favicon) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Andrei และคุณลักษณะหลักของมันคือ "Shows the progress of the video as a bar in the tab by changing the favicon. It also shows if the video is playing or is paused"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube progress in tab (favicon)
ดาวน์โหลดไฟล์ส่วนขยาย YouTube progress in tab (favicon) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
0.3: - Favicon now changes the white "play" symbol white a "pause" symbol when video is paused/stopped - Progress bar for playing videos is now red - Added a white background to the progress bar for better visibility 0.2: - Paused/stopped videos now have a greyed out progress bar 0.1: - Initial release
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ocihcnaifpkaceaiiokcimplnnlanifp |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/youtube-progress-in-tab-f/ocihcnaifpkaceaiiokcimplnnlanifp |
คำอธิบาย | Shows the progress of the video as a bar in the tab by changing the favicon. It also shows if the video is playing or is paused |
ขนาดไฟล์ | 8.26 KB |
จำนวนการติดตั้ง | 678 |
เวอร์ชันปัจจุบัน | 0.3 |
อัปเดตครั้งล่าสุด | 2018-02-10 |
วันที่เผยแพร่ | 2018-02-10 |
คะแนน | 2.08/5 รวมทั้งหมด 13 คะแนน |
ผู้พัฒนา | Andrei |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube progress in tab (favicon)", "description": "Shows the progress of the video as a bar in the tab by changing the favicon. It also shows if the video is playing or is paused", "version": "0.3", "icons": { "48": "images\/48.png", "128": "images\/128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/watch*" ], "js": [ "functions.js", "content.js" ] }, { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "functions.js", "changedefaultfavicon.js" ] } ], "web_accessible_resources": [ "event.js" ], "permissions": [ "http:\/\/www.youtube.com\/" ] } |