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

What is YouTube progress in tab (favicon)?

YouTube progress in tab (favicon) is a Chrome extension developed by Andrei, and its main feature is "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".

Extension Screenshots

screenshot

Download YouTube progress in tab (favicon) Extension CRX File

Download YouTube progress in tab (favicon) extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name YouTube progress in tab (favicon) YouTube progress in tab (favicon)
ID ocihcnaifpkaceaiiokcimplnnlanifp
Official URL https://chrome.google.com/webstore/detail/youtube-progress-in-tab-f/ocihcnaifpkaceaiiokcimplnnlanifp
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
File Size 8.26 KB
Installation Count 678
Current Version 0.3
Last Updated 2018-02-10
Publish Date 2018-02-10
Rating 2.08/5 Total 13 Ratings
Developer Andrei
Email [email protected]
Payment Type free
Supported Languages 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\/"
    ]
}