Correct Pause
Extension to fix YouTube Spacebar play/pause function
Was ist Correct Pause?
Correct Pause ist eine Chrome-Erweiterung, die von Aljo entwickelt wurde, und ihr Hauptmerkmal ist "Extension to fix YouTube Spacebar play/pause function".
Erweiterungsscreenshots
Correct Pause-Erweiterungs-CRX-Datei herunterladen
Laden Sie Correct Pause-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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] Grundlegende Informationen zur Erweiterung
| Name | |
| ID | bcbjldkfkgpipahfcghnjcmcjnhmigpg |
| Offizielle URL | https://chromewebstore.google.com/detail/correct-pause/bcbjldkfkgpipahfcghnjcmcjnhmigpg |
| Beschreibung | Extension to fix YouTube Spacebar play/pause function |
| Dateigröße | 8.39 KB |
| Installationsanzahl | 366 |
| Aktuelle Version | 1.6 |
| Letztes Update | 2024-01-26 |
| Veröffentlichungsdatum | 2023-11-16 |
| Bewertung | 4.60/5 Insgesamt 20 Bewertungen |
| Entwickler | Aljo |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://justempire.net |
| Hilfeseite URL | https://github.com/MrQuackDuck/CorrectPause |
| URL der Datenschutzrichtlinien-Seite | https://justempire.net/en/service/14/correct-youtube-pause |
| Unterstützte Sprachen | 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"
]
}
]
} | |