Funimation Better Lights Off
Does a couple hacks to resize and hide background when playing a video on funimation.com
Qu'est-ce que Funimation Better Lights Off ?
Funimation Better Lights Off est une extension Chrome développée par tim.wu.0, et sa fonction principale est "Does a couple hacks to resize and hide background when playing a video on funimation.com".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Funimation Better Lights Off
Téléchargez les fichiers d'extension Funimation Better Lights Off au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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 (
Informations de Base sur l'Extension
Nom | Funimation Better Lights Off |
ID | koffmobabcekhlnadcigmhdaffgacpfh |
URL Officiel | https://chromewebstore.google.com/detail/funimation-better-lights/koffmobabcekhlnadcigmhdaffgacpfh |
Description | Does a couple hacks to resize and hide background when playing a video on funimation.com |
Taille du Fichier | 33.49 KB |
Nombre d'Installations | 137 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2015-04-07 |
Date de Publication | 2015-04-07 |
Évaluation | 3.00/5 Total 4 Évaluations |
Développeur | tim.wu.0 |
Type de Paiement | free |
Langues Prises en Charge | 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\/*" ] } |