Youtube Hider

This is a Chrome extension to hide videos and images on YouTube.

Cos'è Youtube Hider?

Youtube Hider è un'estensione di Chrome sviluppata da Miri Ahn, e la sua funzione principale è "This is a Chrome extension to hide videos and images on YouTube.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Youtube Hider

Scarica i file di estensione Youtube Hider in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        You can toggle a visibility of a group of Youtube elements on the list below, respectively:
- Video
- Video thumbnail
- User profile photo

Update 1.1 (2019/11/25) 
- Added a button to enable or disable all checkboxes.                    

Informazioni di Base sull'Estensione

Nome Youtube Hider Youtube Hider
ID cnaimccmiafebfliaiefkdfmdffgmjph
URL Ufficiale https://chrome.google.com/webstore/detail/youtube-hider/cnaimccmiafebfliaiefkdfmdffgmjph
Descrizione This is a Chrome extension to hide videos and images on YouTube.
Dimensione del File 8.85 KB
Conteggio Installazioni 60
Versione Corrente 1.1
Ultimo Aggiornamento 2019-11-29
Data di Pubblicazione 2019-11-29
Valutazione 4.25/5 Totale 4 Valutazioni
Sviluppatore Miri Ahn
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/kameru/youtube-hider/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Hider",
    "version": "1.1",
    "description": "This is a Chrome extension to hide videos and images on YouTube.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "hidingController.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "hide_thumb.css",
        "hide_video.css",
        "hide_icon.css",
        "popup.js",
        "hidingController.js"
    ],
    "permissions": [
        "activeTab",
        "storage",
        "declarativeContent"
    ],
    "page_action": {
        "default_icon": "images\/hide.png",
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}