Funimation Better Lights Off
Does a couple hacks to resize and hide background when playing a video on funimation.com
Τι είναι το Funimation Better Lights Off;
Το Funimation Better Lights Off είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον tim.wu.0, και η κύρια λειτουργία του είναι "Does a couple hacks to resize and hide background when playing a video on funimation.com".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Funimation Better Lights Off
Λήψη αρχείων επέκτασης Funimation Better Lights Off σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
The funimation player is a tad weak. It inexplicable does not follow the width of the window to make use of as much screen real-estate as possible and lights-off mode still leaves a bunch of distracting gunk in the background. This extension hopes to address some of those issues by user agent spoofing to make use of the html5 player and hijack the video play/pause signals to: - clamp the video width to the width of the window while maintaining aspect ratio (
Βασικές Πληροφορίες Επέκτασης
Όνομα | Funimation Better Lights Off |
ID | koffmobabcekhlnadcigmhdaffgacpfh |
Επίσημο URL | https://chromewebstore.google.com/detail/funimation-better-lights/koffmobabcekhlnadcigmhdaffgacpfh |
Περιγραφή | Does a couple hacks to resize and hide background when playing a video on funimation.com |
Μέγεθος Αρχείου | 33.49 KB |
Αριθμός Εγκαταστάσεων | 137 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2015-04-07 |
Ημερομηνία Δημοσίευσης | 2015-04-07 |
Αξιολόγηση | 3.00/5 Συνολικά 4 Αξιολογήσεις |
Προγραμματιστής | tim.wu.0 |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Funimation Better Lights Off", "description": "Does a couple hacks to resize and hide background when playing a video on funimation.com", "version": "1.0", "background": { "scripts": [ "user_agent_fix.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/www.funimation.com\/shows\/*\/videos\/official\/*" ], "js": [ "jquery-2.1.3.min.js", "size_fix.js" ] } ], "permissions": [ "webRequest", "webRequestBlocking", "http:\/\/www.funimation.com\/shows\/*" ] } |