Stop the Music
Pauses all playing YouTube videos.
Hvad er Stop the Music?
Stop the Music er en Chrome-udvidelse udviklet af Roxton Labs, og dens hovedfunktion er "Pauses all playing YouTube videos.".
Udvidelsesskærmbilleder
Download Stop the Music-udvidelses-CRX-fil
Download Stop the Music-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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). Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | mmkciobbhadaepjnfjllinlemhcmiihc |
| Officiel URL | https://chromewebstore.google.com/detail/stop-the-music/mmkciobbhadaepjnfjllinlemhcmiihc |
| Beskrivelse | Pauses all playing YouTube videos. |
| Filstørrelse | 10.84 KB |
| Antal Installationer | 213 |
| Nuværende Version | 1.0 |
| Senest Opdateret | 2015-11-27 |
| Udgivelsesdato | 2015-11-27 |
| Bedømmelse | 5.00/5 Samlet 7 Bedømmelser |
| Udvikler | Roxton Labs |
| Betalingsmetode | free |
| Udvidelseswebsted | http://www.roxtonlabs.blogspot.com |
| Understøttede Sprog | 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
}
}
} | |