Stop the Music
Pauses all playing YouTube videos.
Co to jest Stop the Music?
Stop the Music to rozszerzenie Chrome opracowane przez Roxton Labs, a jego główną funkcją jest „Pauses all playing YouTube videos.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Stop the Music
Pobierz pliki rozszerzeń Stop the Music 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
Pauses all playing YouTube videos, even if Chrome is in the background. * Press once to pause, press again to resume (will only play the most recent video). * Right click to set keyboard shortcut (supports media keys).
Podstawowe informacje o rozszerzeniu
Nazwa | Stop the Music |
ID | mmkciobbhadaepjnfjllinlemhcmiihc |
Oficjalny URL | https://chromewebstore.google.com/detail/stop-the-music/mmkciobbhadaepjnfjllinlemhcmiihc |
Opis | Pauses all playing YouTube videos. |
Rozmiar pliku | 10.84 KB |
Liczba instalacji | 213 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2015-11-27 |
Data Publikacji | 2015-11-27 |
Ocena | 5.00/5 Łącznie 7 Oceny |
Deweloper | Roxton Labs |
Typ Płatności | free |
Strona Rozszerzenia | http://www.roxtonlabs.blogspot.com |
Obsługiwane Języki | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Stop the Music", "description": "Pauses all playing YouTube videos.", "version": "1.0", "author": "Roxton Labs", "browser_action": { "default_icon": "stopIcon.png", "default_title": "Click to pause\/resume background YouTube Videos.\nRight-click to set keyboard shortcut." }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "activeTab", "contextMenus", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "commands": { "stop-the-music": { "suggested_key": { "default": "Ctrl+Shift+1" }, "description": "Pauses\/resumes background YouTube videos.", "global": true } } } |