Stop the Music
Pauses all playing YouTube videos.
Что такое Stop the Music?
Stop the Music - это расширение Chrome, разработанное Roxton Labs, и его основная функция - "Pauses all playing YouTube videos.".
Снимки экрана расширения
Скачать файл CRX расширения Stop the Music
Скачайте файлы расширений Stop the Music в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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). Основная информация о расширении
| Название | |
| ID | mmkciobbhadaepjnfjllinlemhcmiihc |
| Официальный URL | https://chromewebstore.google.com/detail/stop-the-music/mmkciobbhadaepjnfjllinlemhcmiihc |
| Описание | Pauses all playing YouTube videos. |
| Размер файла | 10.84 KB |
| Количество установок | 213 |
| Текущая Версия | 1.0 |
| Последнее Обновление | 2015-11-27 |
| Дата публикации | 2015-11-27 |
| Рейтинг | 5.00/5 Всего 7 оценок |
| Разработчик | Roxton Labs |
| Тип оплаты | free |
| Официальный сайт расширения | http://www.roxtonlabs.blogspot.com |
| Поддерживаемые языки | 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
}
}
} | |