Video Bar
Customizable progress bar for Youtube videos and other web sites
Video Barคืออะไร?
Video Bar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย alikims และคุณลักษณะหลักของมันคือ "Customizable progress bar for Youtube videos and other web sites"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Video Bar
ดาวน์โหลดไฟล์ส่วนขยาย Video Bar ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Adds a progress bar to YouTube videos and videos on other web sites. This helps, in a non-intrusive way, to keep track of the video progress while all the controls are hidden. The progress bar position, size, colors, timer font and mouse-over behavior can be customized in the options. The page has a live preview of the bar with "Save settings" and "Restore default" buttons. All settings are kept in the local browser's storage. Left mouse click on the extension's icon turns it on/off for each browser's tab.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Video Bar |
ID | nediigdbkfmemfcleolaonlpbigjhjhi |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/video-bar/nediigdbkfmemfcleolaonlpbigjhjhi |
คำอธิบาย | Customizable progress bar for Youtube videos and other web sites |
ขนาดไฟล์ | 17.83 KB |
จำนวนการติดตั้ง | 99 |
เวอร์ชันปัจจุบัน | 0.0.7 |
อัปเดตครั้งล่าสุด | 2021-09-20 |
วันที่เผยแพร่ | 2021-09-16 |
คะแนน | 4.67/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | alikims |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Video Bar", "version": "0.0.7", "description": "Customizable progress bar for Youtube videos and other web sites", "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": { "16": "ico\/16.png", "48": "ico\/48.png", "128": "ico\/128.png" } }, "permissions": [ "storage" ], "content_scripts": [ { "all_frames": true, "matches": [ "*:\/\/*\/*" ], "js": [ "bar_on.js" ], "run_at": "document_start" } ], "options_ui": { "page": "options.html", "open_in_tab": false }, "icons": { "16": "ico\/16.png", "48": "ico\/48.png", "128": "ico\/128.png" } } |