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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tim.wu.0 และคุณลักษณะหลักของมันคือ "Does a couple hacks to resize and hide background when playing a video on funimation.com"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Funimation Better Lights Off

ดาวน์โหลดไฟล์ส่วนขยาย 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\/*"
    ]
}