Stop the Music
Pauses all playing YouTube videos.
Was ist Stop the Music?
Stop the Music ist eine Chrome-Erweiterung, die von Roxton Labs entwickelt wurde, und ihr Hauptmerkmal ist "Pauses all playing YouTube videos.".
Erweiterungsscreenshots
Stop the Music-Erweiterungs-CRX-Datei herunterladen
Laden Sie Stop the Music-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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). Grundlegende Informationen zur Erweiterung
| Name | |
| ID | mmkciobbhadaepjnfjllinlemhcmiihc |
| Offizielle URL | https://chromewebstore.google.com/detail/stop-the-music/mmkciobbhadaepjnfjllinlemhcmiihc |
| Beschreibung | Pauses all playing YouTube videos. |
| Dateigröße | 10.84 KB |
| Installationsanzahl | 213 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2015-11-27 |
| Veröffentlichungsdatum | 2015-11-27 |
| Bewertung | 5.00/5 Insgesamt 7 Bewertungen |
| Entwickler | Roxton Labs |
| Zahlungsart | free |
| Erweiterungswebsite | http://www.roxtonlabs.blogspot.com |
| Unterstützte Sprachen | 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
}
}
} | |