Youtube Distraction Filter

Remove distracting elements from youtube

O que é Youtube Distraction Filter?

Youtube Distraction Filter é uma extensão do Chrome desenvolvida por Tom Headifen, e sua principal característica é "Remove distracting elements from youtube".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Youtube Distraction Filter

Baixe arquivos de extensão Youtube Distraction Filter 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 Chrome extension by default will remove the comment section and related video section whenever you are watching a video.

This helps users not get distracted by participating in pointless conversation or getting fooled by click bait videos.

Known bugs:
-If you navigate to a video from within the youtube website the filter will not kick in. It will only work if you navigate straight to the video from a different website/link.

Change Log:
September 4th 2017:
-Youtube recently had an update, changed fields names that are targeted to be filtered to keep up with these changes.

August 5th 2019
-Fixed bug where related videos wouldn't hide.                    

Informações Básicas da Extensão

Nome Youtube Distraction Filter Youtube Distraction Filter
ID bcbpflcbmnnpdhjmfblndddmoimlimbf
URL Oficial https://chromewebstore.google.com/detail/youtube-distraction-filte/bcbpflcbmnnpdhjmfblndddmoimlimbf
Descrição Remove distracting elements from youtube
Tamanho do Arquivo 7.3 KB
Contagem de Instalações 99
Versão Atual 1.0.2
Última Atualização 2019-08-06
Data de Publicação 2019-08-05
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Tom Headifen
Tipo de Pagamento free
Site da Extensão https://github.com/tomheadifen/youtube-distraction-filter
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Distraction Filter",
    "description": "Remove distracting elements from youtube",
    "version": "1.0.2",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": "eye-icon.png",
        "default_title": "Youtube Distraction Filter",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "youtube-distraction-filter.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "declarativeContent",
        "storage"
    ]
}