Youtube focus

Blocks Youtube recommendations so that you see only what you search.

O que é Youtube focus?

Youtube focus é uma extensão do Chrome desenvolvida por Priyanshu Nayan, e sua principal característica é "Blocks Youtube recommendations so that you see only what you search.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Youtube focus

Baixe arquivos de extensão Youtube focus 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 removes all the recommended videos that you click to waste time, also it removes comments which i s not productive and also removes autoplay which makes you stick to the site and keep binge watching. Just search the videos you necessarily want to watch and that's it. That's what youtube was built for, that's what youtube should be used for.                    

Informações Básicas da Extensão

Nome Youtube focus Youtube focus
ID elnjcclakbcdhbljljckfokbpmcicemo
URL Oficial https://chromewebstore.google.com/detail/youtube-focus/elnjcclakbcdhbljljckfokbpmcicemo
Descrição Blocks Youtube recommendations so that you see only what you search.
Tamanho do Arquivo 10.62 KB
Contagem de Instalações 40
Versão Atual 1.0.1
Última Atualização 2020-04-08
Data de Publicação 2020-04-08
Classificação 4.00/5 Total de 4 Avaliações
Desenvolvedor Priyanshu Nayan
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/priyanshunayan/youtube-focus
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube focus",
    "version": "1.0.1",
    "description": "Blocks Youtube recommendations so that you see only what you search.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "permissions": [
            "storage",
            "tabs",
            "declarativeContent"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/",
                "*:\/\/youtube.com\/",
                "*:\/\/youtube.com\/watch*",
                "*:\/\/www.youtube.com\/watch*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_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"
    },
    "manifest_version": 2
}