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

O que é YouTube progress in tab (favicon)?

YouTube progress in tab (favicon) é uma extensão do Chrome desenvolvida por Andrei, e sua principal característica é "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".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão YouTube progress in tab (favicon)

Baixe arquivos de extensão YouTube progress in tab (favicon) no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome YouTube progress in tab (favicon) YouTube progress in tab (favicon)
ID ocihcnaifpkaceaiiokcimplnnlanifp
URL Oficial https://chrome.google.com/webstore/detail/youtube-progress-in-tab-f/ocihcnaifpkaceaiiokcimplnnlanifp
Descrição 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
Tamanho do Arquivo 8.26 KB
Contagem de Instalações 678
Versão Atual 0.3
Última Atualização 2018-02-10
Data de Publicação 2018-02-10
Classificação 2.08/5 Total de 13 Avaliações
Desenvolvedor Andrei
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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\/"
    ]
}