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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Does a couple hacks to resize and hide background when playing a video on funimation.com"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Funimation Better Lights Off एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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\/*" ] } |