YouTube Distraction Free Mode

Video only displays with a black background

Cos'è YouTube Distraction Free Mode?

YouTube Distraction Free Mode è un'estensione di Chrome sviluppata da dan.burke.software.engineer, e la sua funzione principale è "Video only displays with a black background".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione YouTube Distraction Free Mode

Scarica i file di estensione YouTube Distraction Free Mode 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

                        Chrome extension button removes everything except the youtube video being watched.  
Enjoy the distraction free video viewing.                    

Informazioni di Base sull'Estensione

Nome YouTube Distraction Free Mode YouTube Distraction Free Mode
ID fndkdnncakdblphkfbbfaljjimbojppc
URL Ufficiale https://chrome.google.com/webstore/detail/youtube-distraction-free/fndkdnncakdblphkfbbfaljjimbojppc
Descrizione Video only displays with a black background
Dimensione del File 5.36 KB
Conteggio Installazioni 117
Versione Corrente 1.0
Ultimo Aggiornamento 2017-01-15
Data di Pubblicazione 2017-01-15
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore dan.burke.software.engineer
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Distraction Free Mode",
    "description": "Video only displays with a black background",
    "version": "1.0",
    "browser_action": {
        "default_title": "YouTubeDistractionFree",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.google.com\/*"
            ],
            "js": [
                "popup.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}