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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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