Correct Pause
Extension to fix YouTube Spacebar play/pause function
Что такое Correct Pause?
Correct Pause - это расширение Chrome, разработанное Aljo, и его основная функция - "Extension to fix YouTube Spacebar play/pause function".
Снимки экрана расширения
Скачать файл CRX расширения Correct Pause
Скачайте файлы расширений Correct Pause в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension was made by MrQuackDuck, not me (Aljo). The reason it's under my name is because I bought a chrome developer account, and offered to publish the extension while giving full credit to the original developer.
After a recent update, YouTube is now having an issue with pressing Spacebar to play/pause the video after Alt+Tab and in cases when you're unfocused from the videoplayer. This browser extension is here to fix this.
Source code: https://github.com/MrQuackDuck/CorrectPause
Check out more stuff on https://justempire.net
Support mail: [email protected] Основная информация о расширении
| Название | |
| ID | bcbjldkfkgpipahfcghnjcmcjnhmigpg |
| Официальный URL | https://chromewebstore.google.com/detail/correct-pause/bcbjldkfkgpipahfcghnjcmcjnhmigpg |
| Описание | Extension to fix YouTube Spacebar play/pause function |
| Размер файла | 8.39 KB |
| Количество установок | 366 |
| Текущая Версия | 1.6 |
| Последнее Обновление | 2024-01-26 |
| Дата публикации | 2023-11-16 |
| Рейтинг | 4.60/5 Всего 20 оценок |
| Разработчик | Aljo |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://justempire.net |
| URL страницы помощи | https://github.com/MrQuackDuck/CorrectPause |
| URL страницы политики конфиденциальности | https://justempire.net/en/service/14/correct-youtube-pause |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Correct Pause",
"version": "1.6",
"permissions": [
"scripting"
],
"host_permissions": [
"*:\/\/youtube.com\/*"
],
"description": "Extension to fix YouTube Spacebar play\/pause function",
"icons": {
"32": "icons\/correctPause-32.png",
"48": "icons\/correctPause-48.png",
"64": "icons\/correctPause-64.png",
"128": "icons\/correctPause-128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*"
],
"js": [
"correctPause.js"
]
}
]
} | |