Music Mode for YouTube

The distraction-free way to listen to music on YouTube.

Co je Music Mode for YouTube?

Music Mode for YouTube je rozšíření Chrome vyvinuté dotspencer, a jeho hlavní funkcí je „The distraction-free way to listen to music on YouTube.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Music Mode for YouTube

Stáhněte si soubory rozšíření Music Mode for YouTube ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Built for those who like to listen to music on YouTube but don't want to be distracted. Perfect for use at work or school. 

Works by redirecting all YouTube links to a distraction-free listening page. This allows you to click on videos in search engine results like you normally would.

Functionality can easily be disabled using the toggle switch for times you want to see the normal video page.                    

Základní Informace o Rozšíření

Název Music Mode for YouTube Music Mode for YouTube
ID jeieekjcmkhfffleemgbiooooockfmha
Oficiální URL https://chromewebstore.google.com/detail/music-mode-for-youtube/jeieekjcmkhfffleemgbiooooockfmha
Popis The distraction-free way to listen to music on YouTube.
Velikost souboru 33.26 KB
Počet instalací 3,549
Aktuální Verze 0.2
Poslední Aktualizace 2020-11-18
Datum Vydání 2020-06-23
Hodnocení 3.50/5 Celkem 10 Hodnocení
Vývojář dotspencer
E-mail [email protected]
Typ Platby free
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Music Mode for YouTube",
    "version": "0.2",
    "description": "The distraction-free way to listen to music on YouTube.",
    "browser_action": {
        "default_title": "Music Mode for YouTube",
        "default_popup": "pages\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/watch?v=*"
            ],
            "run_at": "document_start",
            "js": [
                "inject.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs"
    ],
    "icons": {
        "16": "assets\/icon-16.png",
        "48": "assets\/icon-48.png",
        "128": "assets\/icon-128.png"
    },
    "manifest_version": 2
}