YouTube Distraction Free Mode

Video only displays with a black background

Vad är YouTube Distraction Free Mode?

YouTube Distraction Free Mode är en Chrome-tillägg utvecklad av dan.burke.software.engineer, och dess huvudfunktion är "Video only displays with a black background".

Tilläggsskärmbilder

screenshot

Ladda ner YouTube Distraction Free Mode-förlängningens CRX-fil

Ladda ner YouTube Distraction Free Mode-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn YouTube Distraction Free Mode YouTube Distraction Free Mode
ID fndkdnncakdblphkfbbfaljjimbojppc
Officiell webbadress https://chrome.google.com/webstore/detail/youtube-distraction-free/fndkdnncakdblphkfbbfaljjimbojppc
Beskrivning Video only displays with a black background
Filstorlek 5.36 KB
Antal Installationer 117
Aktuell Version 1.0
Senast Uppdaterad 2017-01-15
Publiceringsdatum 2017-01-15
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare dan.burke.software.engineer
Betalningssätt free
Stödda Språk 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:\/\/*\/*"
    ]
}