Youtube Untrend

This extension simply removes the 'Trending' tab on the Youtube home page.

O que é Youtube Untrend?

Youtube Untrend é uma extensão do Chrome desenvolvida por dorian.grolaux, e sua principal característica é "This extension simply removes the 'Trending' tab on the Youtube home page.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Youtube Untrend

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

                        Don't like this trending tab ? I don't either.                    

Informações Básicas da Extensão

Nome Youtube Untrend Youtube Untrend
ID eopimnkjhiiigfakbhiehpiacdiolcpc
URL Oficial https://chrome.google.com/webstore/detail/eopimnkjhiiigfakbhiehpiacdiolcpc
Descrição This extension simply removes the 'Trending' tab on the Youtube home page.
Tamanho do Arquivo 29.2 KB
Contagem de Instalações 21
Versão Atual 0.2
Última Atualização 2016-01-10
Data de Publicação 2016-01-10
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor dorian.grolaux
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Untrend",
    "short_name": "Removes the 'Trending' tab on Youtube's home page",
    "version": "0.2",
    "description": "This extension simply removes the 'Trending' tab on the Youtube home page.",
    "permissions": [
        "activeTab",
        "*:\/\/www.youtube.com\/"
    ],
    "icons": {
        "16": "icons\/yt_untrend16.png",
        "48": "icons\/yt_untrend48.png",
        "128": "icons\/yt_untrend128.png"
    },
    "offline_enabled": true,
    "page_action": {
        "default_icon": {
            "16": "icons\/yt_untrend16.png",
            "48": "icons\/yt_untrend48.png"
        },
        "default_title": "Youtube Untrend"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/",
                "*:\/\/www.youtube.com\/feed\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}