Funimation Better Lights Off
Does a couple hacks to resize and hide background when playing a video on funimation.com
Cos'è Funimation Better Lights Off?
Funimation Better Lights Off è un'estensione di Chrome sviluppata da tim.wu.0, e la sua funzione principale è "Does a couple hacks to resize and hide background when playing a video on funimation.com".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Funimation Better Lights Off
Scarica i file di estensione Funimation Better Lights Off in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 (
Informazioni di Base sull'Estensione
Nome | Funimation Better Lights Off |
ID | koffmobabcekhlnadcigmhdaffgacpfh |
URL Ufficiale | https://chromewebstore.google.com/detail/funimation-better-lights/koffmobabcekhlnadcigmhdaffgacpfh |
Descrizione | Does a couple hacks to resize and hide background when playing a video on funimation.com |
Dimensione del File | 33.49 KB |
Conteggio Installazioni | 137 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2015-04-07 |
Data di Pubblicazione | 2015-04-07 |
Valutazione | 3.00/5 Totale 4 Valutazioni |
Sviluppatore | tim.wu.0 |
Tipo di Pagamento | free |
Lingue Supportate | 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\/*" ] } |