Correct Pause
Extension to fix YouTube Spacebar play/pause function
Cos'è Correct Pause?
Correct Pause è un'estensione di Chrome sviluppata da Aljo, e la sua funzione principale è "Extension to fix YouTube Spacebar play/pause function".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Correct Pause
Scarica i file di estensione Correct Pause in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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]
Informazioni di Base sull'Estensione
Nome | Correct Pause |
ID | bcbjldkfkgpipahfcghnjcmcjnhmigpg |
URL Ufficiale | https://chromewebstore.google.com/detail/correct-pause/bcbjldkfkgpipahfcghnjcmcjnhmigpg |
Descrizione | Extension to fix YouTube Spacebar play/pause function |
Dimensione del File | 8.39 KB |
Conteggio Installazioni | 366 |
Versione Corrente | 1.6 |
Ultimo Aggiornamento | 2024-01-26 |
Data di Pubblicazione | 2023-11-16 |
Valutazione | 4.60/5 Totale 20 Valutazioni |
Sviluppatore | Aljo |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://justempire.net |
URL della Pagina di Aiuto | https://github.com/MrQuackDuck/CorrectPause |
URL della Pagina della Politica sulla Privacy | https://justempire.net/en/service/14/correct-youtube-pause |
Lingue Supportate | 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" ] } ] } |