Music Mode for YouTube

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

Co to jest Music Mode for YouTube?

Music Mode for YouTube to rozszerzenie Chrome opracowane przez dotspencer, a jego główną funkcją jest „The distraction-free way to listen to music on YouTube.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Music Mode for YouTube

Pobierz pliki rozszerzeń Music Mode for YouTube w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Music Mode for YouTube Music Mode for YouTube
ID jeieekjcmkhfffleemgbiooooockfmha
Oficjalny URL https://chromewebstore.google.com/detail/music-mode-for-youtube/jeieekjcmkhfffleemgbiooooockfmha
Opis The distraction-free way to listen to music on YouTube.
Rozmiar pliku 33.26 KB
Liczba instalacji 3,549
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2020-11-18
Data Publikacji 2020-06-23
Ocena 3.50/5 Łącznie 10 Oceny
Deweloper dotspencer
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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
}