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
公式URL 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\/*"
    ]
}