Correct Pause
Extension to fix YouTube Spacebar play/pause function
O que é Correct Pause?
Correct Pause é uma extensão do Chrome desenvolvida por Aljo, e sua principal característica é "Extension to fix YouTube Spacebar play/pause function".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Correct Pause
Baixe arquivos de extensão Correct Pause no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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]
Informações Básicas da Extensão
Nome | Correct Pause |
ID | bcbjldkfkgpipahfcghnjcmcjnhmigpg |
URL Oficial | https://chromewebstore.google.com/detail/correct-pause/bcbjldkfkgpipahfcghnjcmcjnhmigpg |
Descrição | Extension to fix YouTube Spacebar play/pause function |
Tamanho do Arquivo | 8.39 KB |
Contagem de Instalações | 366 |
Versão Atual | 1.6 |
Última Atualização | 2024-01-26 |
Data de Publicação | 2023-11-16 |
Classificação | 4.60/5 Total de 20 Avaliações |
Desenvolvedor | Aljo |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://justempire.net |
URL da Página de Ajuda | https://github.com/MrQuackDuck/CorrectPause |
URL da Página de Política de Privacidade | https://justempire.net/en/service/14/correct-youtube-pause |
Idiomas Suportados | 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" ] } ] } |