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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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