remove YouTube TV button

removes 'play on TV' button on YouTube

O que é remove YouTube TV button?

remove YouTube TV button é uma extensão do Chrome desenvolvida por Sveagruva, e sua principal característica é "removes 'play on TV' button on YouTube".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão remove YouTube TV button

Baixe arquivos de extensão remove YouTube TV button 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

                        'play on TV' button is annoying element of YouTube and also is kind of dangerous. You no longer need to worry about accidentally pressing that button because it doesn't exist anymore after installing this extension.

==============

0.1.3 update fixes 'play on TV' button for youtube redesign

clicking no longer disables extension. if you see green checkmark it will perform same action as it did in 0.1.2.                    

Informações Básicas da Extensão

Nome remove YouTube TV button remove YouTube TV button
ID lcblinegofgihklfnclgedlfcolbacpl
URL Oficial https://chromewebstore.google.com/detail/remove-youtube-tv-button/lcblinegofgihklfnclgedlfcolbacpl
Descrição removes 'play on TV' button on YouTube
Tamanho do Arquivo 27.89 KB
Contagem de Instalações 3,748
Versão Atual 0.1.3
Última Atualização 2022-11-09
Data de Publicação 2020-12-15
Classificação 4.91/5 Total de 56 Avaliações
Desenvolvedor Sveagruva
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/sveagruva/remove_youtube_tv_button
Idiomas Suportados en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.1.3",
    "name": "__MSG_name__",
    "description": "__MSG_app_description__",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "main.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "icons": {
        "16": "icons\/16_disabled.png",
        "48": "icons\/48_disabled.png",
        "128": "icons\/128_disabled.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "default_locale": "en",
    "homepage_url": "https:\/\/github.com\/sveagruva\/remove_youtube_tv_button",
    "browser_action": {
        "default_icon": {
            "16": "icons\/16_disabled.png",
            "48": "icons\/48_disabled.png",
            "128": "icons\/128_disabled.png"
        }
    }
}