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

Qu'est-ce que YouTube progress in tab (favicon) ?

YouTube progress in tab (favicon) est une extension Chrome développée par Andrei, et sa fonction principale est "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".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension YouTube progress in tab (favicon)

Téléchargez les fichiers d'extension YouTube progress in tab (favicon) au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom YouTube progress in tab (favicon) YouTube progress in tab (favicon)
ID ocihcnaifpkaceaiiokcimplnnlanifp
URL Officiel 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
Taille du Fichier 8.26 KB
Nombre d'Installations 678
Version Actuelle 0.3
Dernière Mise à Jour 2018-02-10
Date de Publication 2018-02-10
Évaluation 2.08/5 Total 13 Évaluations
Développeur Andrei
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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\/"
    ]
}