remove YouTube TV button

removes 'play on TV' button on YouTube

Wat is remove YouTube TV button?

remove YouTube TV button is een Chrome-extensie ontwikkeld door Sveagruva, en de belangrijkste functie is "removes 'play on TV' button on YouTube".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie remove YouTube TV button

Download remove YouTube TV button-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        '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.                    

Basisinformatie over de Extensie

Naam remove YouTube TV button remove YouTube TV button
ID lcblinegofgihklfnclgedlfcolbacpl
Officiële URL https://chromewebstore.google.com/detail/remove-youtube-tv-button/lcblinegofgihklfnclgedlfcolbacpl
Beschrijving removes 'play on TV' button on YouTube
Bestandsgrootte 27.89 KB
Aantal Installaties 3,748
Huidige Versie 0.1.3
Laatst Bijgewerkt 2022-11-09
Publicatiedatum 2020-12-15
Beoordeling 4.91/5 Totaal 56 Beoordelingen
Ontwikkelaar Sveagruva
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/sveagruva/remove_youtube_tv_button
Ondersteunde Talen 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"
        }
    }
}