Hide Funimation UI
Hide/show Funimation video UI with 'z' and use PageUp/PageDown or ArrowUp/ArrowDown keys to seek 1 second back/forward
Τι είναι το Hide Funimation UI;
Το Hide Funimation UI είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον curlystrategist, και η κύρια λειτουργία του είναι "Hide/show Funimation video UI with 'z' and use PageUp/PageDown or ArrowUp/ArrowDown keys to seek 1 second back/forward".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Hide Funimation UI
Λήψη αρχείων επέκτασης Hide Funimation UI σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
The Funimation video UI does not hide itself when paused. This can be very inconvenient when you want to take screenshots of videos. With this browser extension active, when watching a Funimation video, you can: * Press 'z' to hide the video UI * Use the up and down arrow keys (or the PgUp/PgDown keys) to seek back and forward in 1 second increments. This is a new version adapted to the new Funimation player. The hide functionality can now find the elements to hide in the new player. The seek functionality has changed to prevent conflict with the native controls. The player now uses left and right arrow keys natively for 5 second searches, so I've moved 1 second searching to up/down or PgUp/PgDown keys.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Hide Funimation UI |
ID | kbcnlmdebncggiahkpdpkbgjhfembeja |
Επίσημο URL | https://chromewebstore.google.com/detail/hide-funimation-ui/kbcnlmdebncggiahkpdpkbgjhfembeja |
Περιγραφή | Hide/show Funimation video UI with 'z' and use PageUp/PageDown or ArrowUp/ArrowDown keys to seek 1 second back/forward |
Μέγεθος Αρχείου | 11.38 KB |
Αριθμός Εγκαταστάσεων | 2,571 |
Τρέχουσα Έκδοση | 2.1 |
Τελευταία Ενημέρωση | 2022-08-13 |
Ημερομηνία Δημοσίευσης | 2021-01-05 |
Αξιολόγηση | 4.53/5 Συνολικά 17 Αξιολογήσεις |
Προγραμματιστής | curlystrategist |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/praabjerg/Hide-Funimation-UI |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/praabjerg/Hide-Funimation-UI |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hide Funimation UI", "version": "2.1", "description": "Hide\/show Funimation video UI with 'z' and use PageUp\/PageDown or ArrowUp\/ArrowDown keys to seek 1 second back\/forward", "content_scripts": [ { "all_frames": true, "matches": [ "*:\/\/www.funimation.com\/v\/*" ], "js": [ "content_script.js" ], "css": [ "style.css" ] } ], "action": { "default_icon": { "16": "images\/no_funi_ui16.png", "32": "images\/no_funi_ui32.png", "48": "images\/no_funi_ui48.png", "128": "images\/no_funi_ui128.png" } }, "icons": { "16": "images\/no_funi_ui16.png", "32": "images\/no_funi_ui32.png", "48": "images\/no_funi_ui48.png", "128": "images\/no_funi_ui128.png" }, "manifest_version": 3 } |