Funimation Better Lights Off
Does a couple hacks to resize and hide background when playing a video on funimation.com
Wat is Funimation Better Lights Off?
Funimation Better Lights Off is een Chrome-extensie ontwikkeld door tim.wu.0, en de belangrijkste functie is "Does a couple hacks to resize and hide background when playing a video on funimation.com".
Extensie Screenshots
Download het CRX-bestand van de extensie Funimation Better Lights Off
Download Funimation Better Lights Off-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 (
Basisinformatie over de Extensie
Naam | Funimation Better Lights Off |
ID | koffmobabcekhlnadcigmhdaffgacpfh |
Officiële URL | https://chromewebstore.google.com/detail/funimation-better-lights/koffmobabcekhlnadcigmhdaffgacpfh |
Beschrijving | Does a couple hacks to resize and hide background when playing a video on funimation.com |
Bestandsgrootte | 33.49 KB |
Aantal Installaties | 137 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2015-04-07 |
Publicatiedatum | 2015-04-07 |
Beoordeling | 3.00/5 Totaal 4 Beoordelingen |
Ontwikkelaar | tim.wu.0 |
Betalingswijze | free |
Ondersteunde Talen | 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\/*" ] } |