Music Mode for YouTube™

Blocks the video keeping only the audio on YouTube and YouTube Music.

Co je Music Mode for YouTube™?

Music Mode for YouTube™ je rozšíření Chrome vyvinuté Thunderarea, a jeho hlavní funkcí je „Blocks the video keeping only the audio on YouTube and YouTube Music.“.

Snímky obrazovky rozšíření

screenshot
screenshot
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í

                        The only Chrome extension that not only disables the video but also blocks it. The best extension to reduce the use of CPU and GPU, save bandwidth and hide NSFW content. Works on YouTube, YouTube Music and YouTube videos embedded in sites.
FEATURES (ALL OPTIONAL):
  1. Blocks the video keeping only the audio
  2. Hides the video thumbnails
  3. Hides the images of channel/user avatars
  4. Hides various other images
  5. Disables the "Video paused. Continue watching?" message
  6. Skips the ads
Separate options for YouTube, YouTube Music and YouTube videos embedded in other sites. You can enable/disable the extension for all tabs or for specific tabs.

Extra options:
  1. Hides the thumbnails and various other images in Google search when you search for a song or a singer
  2. Quick access buttons: two extra buttons on YouTube in order to hide the thumbnails and block the video quickly without using the popup window

Notes:
  i. Live YouTube videos are hidden but not blocked
  ii. If you have enabled the features 1, 2, 3, 4 the images are not only hidden but also blocked saving more bandwidth
  iii. The message "Video paused. Continue watching?" is disabled only when you block the video

Available for mobiles using the Kiwi browser that supports extensions: https://play.google.com/store/apps/details?id=com.kiwibrowser.browser

Available for Firefox: https://addons.mozilla.org/en/firefox/addon/music-mode-for-youtube/

The source code of the extension is now available on GitHub: https://github.com/Thunderarea/music-mode-for-youtube

The extension does not collect any kind of data. The user options are stored locally in the user's browser.

Date of release: 02/10/2019

Donate to support the development of the extension: https://www.paypal.com/donate?hosted_button_id=V2EHRNX8RBTX2

Support on Patreon: https://www.patreon.com/bePatron?u=67620554                    

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

Název Music Mode for YouTube™ Music Mode for YouTube™
ID abbpaepbpakcpipajigmlpnhlnbennna
Oficiální URL https://chromewebstore.google.com/detail/music-mode-for-youtube/abbpaepbpakcpipajigmlpnhlnbennna
Popis Blocks the video keeping only the audio on YouTube and YouTube Music.
Velikost souboru 115 KB
Počet instalací 14,402
Aktuální Verze 6.4.2
Poslední Aktualizace 2024-01-09
Datum Vydání 2020-06-17
Hodnocení 4.66/5 Celkem 241 Hodnocení
Vývojář Thunderarea
E-mail [email protected]
Typ Platby free
Podporované Jazyky en,it,el,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Music Mode for YouTube\u2122",
    "short_name": "Music Mode",
    "version": "6.4.2",
    "default_locale": "en",
    "incognito": "spanning",
    "description": "__MSG_extDescription__",
    "offline_enabled": true,
    "icons": {
        "19": "img\/logo\/icon19.png",
        "38": "img\/logo\/icon38.png",
        "48": "img\/logo\/icon48.png",
        "128": "img\/logo\/icon128.png"
    },
    "commands": {
        "run_extension_tab": {
            "suggested_key": {
                "default": "Ctrl+M",
                "mac": "Command+M"
            },
            "description": "__MSG_command1Description__"
        }
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "declarativeNetRequest",
        "tabs",
        "storage",
        "unlimitedStorage"
    ],
    "options_ui": {
        "browser_style": true,
        "open_in_tab": true,
        "page": "pages\/options.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "css\/google_search.css",
                "css\/ads.css",
                "css\/ads_mobile.css",
                "css\/channel_avatars.css",
                "css\/channel_avatars_mobile.css",
                "css\/channel_avatars_YTMusic.css",
                "css\/others.css",
                "css\/others_mobile.css",
                "css\/others_YTMusic.css",
                "css\/video_thumbnails1.css",
                "css\/video_thumbnails2.css",
                "css\/video_thumbnails_mobile.css",
                "css\/video_thumbnails_YTMusic.css",
                "css\/video.css",
                "css\/video_mobile.css",
                "js\/video_handler.js",
                "js\/video_quick_access_button.js",
                "js\/adSkipper.js"
            ],
            "matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/music.youtube.com\/*",
                "*:\/\/m.youtube.com\/*",
                "*:\/\/www.youtube-nocookie.com\/*"
            ]
        },
        {
            "resources": [
                "css\/google_search.css"
            ],
            "matches": [
                ""
            ]
        },
        {
            "resources": [
                "img\/logo\/logo_only.svg",
                "img\/image_document.svg",
                "img\/avatar-chanell.svg",
                "img\/youtube_logo.svg",
                "img\/photo.jpg",
                "img\/photoCom.jpg",
                "img\/logo\/full_logo.svg",
                "img\/youtubeImages\/default.jpg"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_title": "Music Mode for YouTube",
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/music.youtube.com\/*",
                "*:\/\/m.youtube.com\/*",
                "*:\/\/www.youtube-nocookie.com\/*"
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "js\/content_ytb.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/m.youtube.com\/*"
            ],
            "js": [
                "js\/content_mytb.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/www.google.com\/search*",
                "*:\/\/www.google.ad\/search*",
                "*:\/\/www.google.ae\/search*",
                "*:\/\/www.google.com.af\/search*",
                "*:\/\/www.google.com.ag\/search*",
                "*:\/\/www.google.com.ai\/search*",
                "*:\/\/www.google.al\/search*",
                "*:\/\/www.google.am\/search*",
                "*:\/\/www.google.co.ao\/search*",
                "*:\/\/www.google.com.ar\/search*",
                "*:\/\/www.google.as\/search*",
                "*:\/\/www.google.at\/search*",
                "*:\/\/www.google.com.au\/search*",
                "*:\/\/www.google.az\/search*",
                "*:\/\/www.google.ba\/search*",
                "*:\/\/www.google.com.bd\/search*",
                "*:\/\/www.google.be\/search*",
                "*:\/\/www.google.bf\/search*",
                "*:\/\/www.google.bg\/search*",
                "*:\/\/www.google.com.bh\/search*",
                "*:\/\/www.google.bi\/search*",
                "*:\/\/www.google.bj\/search*",
                "*:\/\/www.google.com.bn\/search*",
                "*:\/\/www.google.com.bo\/search*",
                "*:\/\/www.google.com.br\/search*",
                "*:\/\/www.google.bs\/search*",
                "*:\/\/www.google.bt\/search*",
                "*:\/\/www.google.co.bw\/search*",
                "*:\/\/www.google.by\/search*",
                "*:\/\/www.google.com.bz\/search*",
                "*:\/\/www.google.ca\/search*",
                "*:\/\/www.google.cd\/search*",
                "*:\/\/www.google.cf\/search*",
                "*:\/\/www.google.cg\/search*",
                "*:\/\/www.google.ch\/search*",
                "*:\/\/www.google.ci\/search*",
                "*:\/\/www.google.co.ck\/search*",
                "*:\/\/www.google.cl\/search*",
                "*:\/\/www.google.cm\/search*",
                "*:\/\/www.google.cn\/search*",
                "*:\/\/www.google.com.co\/search*",
                "*:\/\/www.google.co.cr\/search*",
                "*:\/\/www.google.com.cu\/search*",
                "*:\/\/www.google.cv\/search*",
                "*:\/\/www.google.com.cy\/search*",
                "*:\/\/www.google.cz\/search*",
                "*:\/\/www.google.de\/search*",
                "*:\/\/www.google.dj\/search*",
                "*:\/\/www.google.dk\/search*",
                "*:\/\/www.google.dm\/search*",
                "*:\/\/www.google.com.do\/search*",
                "*:\/\/www.google.dz\/search*",
                "*:\/\/www.google.com.ec\/search*",
                "*:\/\/www.google.ee\/search*",
                "*:\/\/www.google.com.eg\/search*",
                "*:\/\/www.google.es\/search*",
                "*:\/\/www.google.com.et\/search*",
                "*:\/\/www.google.fi\/search*",
                "*:\/\/www.google.com.fj\/search*",
                "*:\/\/www.google.fm\/search*",
                "*:\/\/www.google.fr\/search*",
                "*:\/\/www.google.ga\/search*",
                "*:\/\/www.google.ge\/search*",
                "*:\/\/www.google.gg\/search*",
                "*:\/\/www.google.com.gh\/search*",
                "*:\/\/www.google.com.gi\/search*",
                "*:\/\/www.google.gl\/search*",
                "*:\/\/www.google.gm\/search*",
                "*:\/\/www.google.gr\/search*",
                "*:\/\/www.google.com.gt\/search*",
                "*:\/\/www.google.gy\/search*",
                "*:\/\/www.google.com.hk\/search*",
                "*:\/\/www.google.hn\/search*",
                "*:\/\/www.google.hr\/search*",
                "*:\/\/www.google.ht\/search*",
                "*:\/\/www.google.hu\/search*",
                "*:\/\/www.google.co.id\/search*",
                "*:\/\/www.google.ie\/search*",
                "*:\/\/www.google.co.il\/search*",
                "*:\/\/www.google.im\/search*",
                "*:\/\/www.google.co.in\/search*",
                "*:\/\/www.google.iq\/search*",
                "*:\/\/www.google.is\/search*",
                "*:\/\/www.google.it\/search*",
                "*:\/\/www.google.je\/search*",
                "*:\/\/www.google.com.jm\/search*",
                "*:\/\/www.google.jo\/search*",
                "*:\/\/www.google.co.jp\/search*",
                "*:\/\/www.google.co.ke\/search*",
                "*:\/\/www.google.com.kh\/search*",
                "*:\/\/www.google.ki\/search*",
                "*:\/\/www.google.kg\/search*",
                "*:\/\/www.google.co.kr\/search*",
                "*:\/\/www.google.com.kw\/search*",
                "*:\/\/www.google.kz\/search*",
                "*:\/\/www.google.la\/search*",
                "*:\/\/www.google.com.lb\/search*",
                "*:\/\/www.google.li\/search*",
                "*:\/\/www.google.lk\/search*",
                "*:\/\/www.google.co.ls\/search*",
                "*:\/\/www.google.lt\/search*",
                "*:\/\/www.google.lu\/search*",
                "*:\/\/www.google.lv\/search*",
                "*:\/\/www.google.com.ly\/search*",
                "*:\/\/www.google.co.ma\/search*",
                "*:\/\/www.google.md\/search*",
                "*:\/\/www.google.me\/search*",
                "*:\/\/www.google.mg\/search*",
                "*:\/\/www.google.mk\/search*",
                "*:\/\/www.google.ml\/search*",
                "*:\/\/www.google.com.mm\/search*",
                "*:\/\/www.google.mn\/search*",
                "*:\/\/www.google.ms\/search*",
                "*:\/\/www.google.com.mt\/search*",
                "*:\/\/www.google.mu\/search*",
                "*:\/\/www.google.mv\/search*",
                "*:\/\/www.google.mw\/search*",
                "*:\/\/www.google.com.mx\/search*",
                "*:\/\/www.google.com.my\/search*",
                "*:\/\/www.google.co.mz\/search*",
                "*:\/\/www.google.com.na\/search*",
                "*:\/\/www.google.com.ng\/search*",
                "*:\/\/www.google.com.ni\/search*",
                "*:\/\/www.google.ne\/search*",
                "*:\/\/www.google.nl\/search*",
                "*:\/\/www.google.no\/search*",
                "*:\/\/www.google.com.np\/search*",
                "*:\/\/www.google.nr\/search*",
                "*:\/\/www.google.nu\/search*",
                "*:\/\/www.google.co.nz\/search*",
                "*:\/\/www.google.com.om\/search*",
                "*:\/\/www.google.com.pa\/search*",
                "*:\/\/www.google.com.pe\/search*",
                "*:\/\/www.google.com.pg\/search*",
                "*:\/\/www.google.com.ph\/search*",
                "*:\/\/www.google.com.pk\/search*",
                "*:\/\/www.google.pl\/search*",
                "*:\/\/www.google.pn\/search*",
                "*:\/\/www.google.com.pr\/search*",
                "*:\/\/www.google.ps\/search*",
                "*:\/\/www.google.pt\/search*",
                "*:\/\/www.google.com.py\/search*",
                "*:\/\/www.google.com.qa\/search*",
                "*:\/\/www.google.ro\/search*",
                "*:\/\/www.google.ru\/search*",
                "*:\/\/www.google.rw\/search*",
                "*:\/\/www.google.com.sa\/search*",
                "*:\/\/www.google.com.sb\/search*",
                "*:\/\/www.google.sc\/search*",
                "*:\/\/www.google.se\/search*",
                "*:\/\/www.google.com.sg\/search*",
                "*:\/\/www.google.sh\/search*",
                "*:\/\/www.google.si\/search*",
                "*:\/\/www.google.sk\/search*",
                "*:\/\/www.google.com.sl\/search*",
                "*:\/\/www.google.sn\/search*",
                "*:\/\/www.google.so\/search*",
                "*:\/\/www.google.sm\/search*",
                "*:\/\/www.google.sr\/search*",
                "*:\/\/www.google.st\/search*",
                "*:\/\/www.google.com.sv\/search*",
                "*:\/\/www.google.td\/search*",
                "*:\/\/www.google.tg\/search*",
                "*:\/\/www.google.co.th\/search*",
                "*:\/\/www.google.com.tj\/search*",
                "*:\/\/www.google.tl\/search*",
                "*:\/\/www.google.tm\/search*",
                "*:\/\/www.google.tn\/search*",
                "*:\/\/www.google.to\/search*",
                "*:\/\/www.google.com.tr\/search*",
                "*:\/\/www.google.tt\/search*",
                "*:\/\/www.google.com.tw\/search*",
                "*:\/\/www.google.co.tz\/search*",
                "*:\/\/www.google.com.ua\/search*",
                "*:\/\/www.google.co.ug\/search*",
                "*:\/\/www.google.co.uk\/search*",
                "*:\/\/www.google.com.uy\/search*",
                "*:\/\/www.google.co.uz\/search*",
                "*:\/\/www.google.com.vc\/search*",
                "*:\/\/www.google.co.ve\/search*",
                "*:\/\/www.google.vg\/search*",
                "*:\/\/www.google.co.vi\/search*",
                "*:\/\/www.google.com.vn\/search*",
                "*:\/\/www.google.vu\/search*",
                "*:\/\/www.google.ws\/search*",
                "*:\/\/www.google.rs\/search*",
                "*:\/\/www.google.co.za\/search*",
                "*:\/\/www.google.co.zm\/search*",
                "*:\/\/www.google.co.zw\/search*",
                "*:\/\/www.google.cat\/search*"
            ],
            "js": [
                "js\/google_search.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnvYzctu7Kvs3frHXL+nu59GeGgSYwUhja+ICRKonmyUnePV\/S8cECyxXeVvLGMy3fIuvvTg\/AkN7iAhBGvSDqlQEy7IFlGgwlfuzTLE9\/4oN\/TEuAy+nyCojKlofATsWFCfrKesjtLP3HnydMRBmBA00mk03Hz4+kRSUqteILDOW26pXM8scYJlQSuy1yCR71HS4FpfuXvKhgEOzRoy44lXcTUcIH6FuxX0gJXIe7E0dNBkW5P4IX02dxPB5Bq0BywU6aLCTHR4U+Su0kYAKxwXCigvZaLThyM3JQ8\/RM+eoHa6ZVmHXkbY\/bgRCABs5Fnay8eTOOKEu18PaHi6BJwIDAQAB"
}