Correct Pause
Extension to fix YouTube Spacebar play/pause function
Qu'est-ce que Correct Pause ?
Correct Pause est une extension Chrome développée par Aljo, et sa fonction principale est "Extension to fix YouTube Spacebar play/pause function".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Correct Pause
Téléchargez les fichiers d'extension Correct Pause au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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]
Informations de Base sur l'Extension
Nom | Correct Pause |
ID | bcbjldkfkgpipahfcghnjcmcjnhmigpg |
URL Officiel | https://chromewebstore.google.com/detail/correct-pause/bcbjldkfkgpipahfcghnjcmcjnhmigpg |
Description | Extension to fix YouTube Spacebar play/pause function |
Taille du Fichier | 8.39 KB |
Nombre d'Installations | 366 |
Version Actuelle | 1.6 |
Dernière Mise à Jour | 2024-01-26 |
Date de Publication | 2023-11-16 |
Évaluation | 4.60/5 Total 20 Évaluations |
Développeur | Aljo |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://justempire.net |
URL de la Page d'Aide | https://github.com/MrQuackDuck/CorrectPause |
URL de la Page de Politique de Confidentialité | https://justempire.net/en/service/14/correct-youtube-pause |
Langues Prises en Charge | 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" ] } ] } |