Funimation Better Lights Off

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

Funimation Better Lights Off là gì?

Funimation Better Lights Off là một tiện ích mở rộng Chrome được phát triển bởi tim.wu.0, và tính năng chính của nó là "Does a couple hacks to resize and hide background when playing a video on funimation.com".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Funimation Better Lights Off

Tải xuống các tệp mở rộng Funimation Better Lights Off dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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 (

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Funimation Better Lights Off Funimation Better Lights Off
ID koffmobabcekhlnadcigmhdaffgacpfh
URL Chính Thức https://chromewebstore.google.com/detail/funimation-better-lights/koffmobabcekhlnadcigmhdaffgacpfh
Mô tả Does a couple hacks to resize and hide background when playing a video on funimation.com
Kích Thước Tệp 33.49 KB
Số Lần Cài Đặt 137
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2015-04-07
Ngày Phát Hành 2015-04-07
Đánh Giá 3.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển tim.wu.0
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}