Youtube hide watched

Hide watched videos on youtube

O que é Youtube hide watched?

Youtube hide watched é uma extensão do Chrome desenvolvida por gkshink, e sua principal característica é "Hide watched videos on youtube".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Youtube hide watched

Baixe arquivos de extensão Youtube hide watched 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

                        This extension can hide watched videos from your feed page.

It has two modes: make watched videos semitransparent and hide them at all.                    

Informações Básicas da Extensão

Nome Youtube hide watched Youtube hide watched
ID cnibhadcgbichplollgpdnnhjbgflmej
URL Oficial https://chrome.google.com/webstore/detail/youtube-hide-watched/cnibhadcgbichplollgpdnnhjbgflmej
Descrição Hide watched videos on youtube
Tamanho do Arquivo 31.02 KB
Contagem de Instalações 57
Versão Atual 1.1
Última Atualização 2021-03-07
Data de Publicação 2021-02-28
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor gkshink
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/gkshi/youtube-chrome-extension
URL da Página de Ajuda https://github.com/gkshi/youtube-chrome-extension
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube hide watched",
    "description": "Hide watched videos on youtube",
    "author": "George Shinkarev ",
    "version": "1.1",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "inject.js"
            ],
            "css": [
                "inject.css"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/get_started16.png",
            "32": "\/images\/get_started32.png",
            "48": "\/images\/get_started48.png",
            "128": "\/images\/get_started128.png"
        }
    },
    "icons": {
        "16": "\/images\/get_started16.png",
        "32": "\/images\/get_started32.png",
        "48": "\/images\/get_started48.png",
        "128": "\/images\/get_started128.png"
    },
    "options_page": "options.html"
}