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)是由Andrei開發的Chrome擴展程式,該擴展的主要功能是“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)擴展crx文件
下載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 |
官方網址 | 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\/" ] } |