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]
Βασικές Πληροφορίες Επέκτασης
Όνομα | Correct Pause |
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" ] } ] } |