Funimation Better Lights Off

Does a couple hacks to resize and hide background when playing a video on funimation.com

¿Qué es Funimation Better Lights Off?

Funimation Better Lights Off es una extensión de Chrome desarrollada por tim.wu.0, y su función principal es "Does a couple hacks to resize and hide background when playing a video on funimation.com".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Funimation Better Lights Off

Descarga archivos de extensión Funimation Better Lights Off en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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 (

Información Básica de la Extensión

Nombre Funimation Better Lights Off Funimation Better Lights Off
ID koffmobabcekhlnadcigmhdaffgacpfh
URL Oficial https://chromewebstore.google.com/detail/funimation-better-lights/koffmobabcekhlnadcigmhdaffgacpfh
Descripción Does a couple hacks to resize and hide background when playing a video on funimation.com
Tamaño del Archivo 33.49 KB
Cantidad de Instalaciones 137
Versión Actual 1.0
Última Actualización 2015-04-07
Fecha de Publicación 2015-04-07
Calificación 3.00/5 Total de 4 Calificaciones
Desarrollador tim.wu.0
Tipo de Pago free
Idiomas Soportados 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\/*"
    ]
}