Stop the Music
Pauses all playing YouTube videos.
Vad är Stop the Music?
Stop the Music är en Chrome-tillägg utvecklad av Roxton Labs, och dess huvudfunktion är "Pauses all playing YouTube videos.".
Tilläggsskärmbilder
Ladda ner Stop the Music-förlängningens CRX-fil
Ladda ner Stop the Music-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | |
ID | mmkciobbhadaepjnfjllinlemhcmiihc |
Officiell webbadress | https://chromewebstore.google.com/detail/stop-the-music/mmkciobbhadaepjnfjllinlemhcmiihc |
Beskrivning | Pauses all playing YouTube videos. |
Filstorlek | 10.84 KB |
Antal Installationer | 213 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2015-11-27 |
Publiceringsdatum | 2015-11-27 |
Betyg | 5.00/5 Totalt 7 Betyg |
Utvecklare | Roxton Labs |
Betalningssätt | free |
Tilläggswebbplats | http://www.roxtonlabs.blogspot.com |
Stödda Språk | 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 } } } |