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
Was ist YouTube progress in tab (favicon)?
YouTube progress in tab (favicon) ist eine Chrome-Erweiterung, die von Andrei entwickelt wurde, und ihr Hauptmerkmal ist "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".
Erweiterungsscreenshots
YouTube progress in tab (favicon)-Erweiterungs-CRX-Datei herunterladen
Laden Sie YouTube progress in tab (favicon)-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | |
ID | ocihcnaifpkaceaiiokcimplnnlanifp |
Offizielle URL | https://chrome.google.com/webstore/detail/youtube-progress-in-tab-f/ocihcnaifpkaceaiiokcimplnnlanifp |
Beschreibung | 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 |
Dateigröße | 8.26 KB |
Installationsanzahl | 678 |
Aktuelle Version | 0.3 |
Letztes Update | 2018-02-10 |
Veröffentlichungsdatum | 2018-02-10 |
Bewertung | 2.08/5 Insgesamt 13 Bewertungen |
Entwickler | Andrei |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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\/" ] } |