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是由tim.wu.0開發的Chrome擴展程式,該擴展的主要功能是“Does a couple hacks to resize and hide background when playing a video on funimation.com”。

擴展截圖

screenshot
screenshot

下載Funimation Better Lights Off擴展crx文件

下載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 Funimation Better Lights Off
ID koffmobabcekhlnadcigmhdaffgacpfh
官方網址 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\/*"
    ]
}