YouTube - Pause with Space Properly
Allows you to pause/play YouTube videos with the spacebar, even if the player doesn't have focus and without the annoying scrolling.
Τι είναι το YouTube - Pause with Space Properly;
Το YouTube - Pause with Space Properly είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον James Forsyth, και η κύρια λειτουργία του είναι "Allows you to pause/play YouTube videos with the spacebar, even if the player doesn't have focus and without the annoying scrolling.".
Λήψη αρχείου CRX της επέκτασης YouTube - Pause with Space Properly
Λήψη αρχείων επέκτασης YouTube - Pause with Space Properly σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Fixes the common issue with pressing space to pause YouTube videos. This extension refocuses the video when pressing space (unless you're trying to type), preventing the default behaviour that shoots halfway down the webpage. Simple fix for a simple problem. Don't know why YouTube won't fix things themselves.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | cdidekkahbpdfkaegopcnpkobibblmof |
Επίσημο URL | https://chrome.google.com/webstore/detail/youtube-pause-with-space/cdidekkahbpdfkaegopcnpkobibblmof |
Περιγραφή | Allows you to pause/play YouTube videos with the spacebar, even if the player doesn't have focus and without the annoying scrolling. |
Μέγεθος Αρχείου | 19.83 KB |
Αριθμός Εγκαταστάσεων | 151 |
Τρέχουσα Έκδοση | 1.0.0 |
Τελευταία Ενημέρωση | 2017-12-13 |
Ημερομηνία Δημοσίευσης | 2017-12-13 |
Αξιολόγηση | 3.80/5 Συνολικά 10 Αξιολογήσεις |
Προγραμματιστής | James Forsyth |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube - Pause with Space Properly", "description": "Allows you to pause\/play YouTube videos with the spacebar, even if the player doesn't have focus and without the annoying scrolling.", "version": "1.0.0", "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "space.js" ], "run_at": "document_start" } ], "icons": { "128": "space-128.png", "38": "space-38.png", "19": "space-19.png" } } |