YouTube Recommendation Decliner

Declines video recommendations from YouTube to help lessen procrastination.

O que é YouTube Recommendation Decliner?

YouTube Recommendation Decliner é uma extensão do Chrome desenvolvida por Anders Steen, e sua principal característica é "Declines video recommendations from YouTube to help lessen procrastination.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão YouTube Recommendation Decliner

Baixe arquivos de extensão YouTube Recommendation Decliner 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

                        Hides videos that are considered recommended videos. This includes the YouTube home and trending pages, as well as the related videos appearing below or to the side of video playback. Recommended videos appearing after videos are also declined. Searches, subscriptions, history, library and channels are unaffected.

The point is to get the recommended videos out of sight, in order to decrease the risk of users getting stuck clicking on recommended videos for hours.                    

Informações Básicas da Extensão

Nome YouTube Recommendation Decliner YouTube Recommendation Decliner
ID feoddkggeangnmgoomlcdldcffoidake
URL Oficial https://chromewebstore.google.com/detail/youtube-recommendation-de/feoddkggeangnmgoomlcdldcffoidake
Descrição Declines video recommendations from YouTube to help lessen procrastination.
Tamanho do Arquivo 18.43 KB
Contagem de Instalações 15
Versão Atual 1.1.0
Última Atualização 2020-12-14
Data de Publicação 2020-03-11
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Anders Steen
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Recommendation Decliner",
    "short_name": "YT Decliner",
    "version": "1.1.0",
    "manifest_version": 2,
    "description": "Declines video recommendations from YouTube to help lessen procrastination.",
    "icons": {
        "16": "\/images\/icon_16.png",
        "128": "\/images\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "all_frames": true,
            "js": [
                "\/js\/contentScript.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "\/images\/icon_128.png",
        "default_popup": "\/html\/popup.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}