Flixtras - Flixtor Extra Functionality
Extra functionality and tools for Flixtor. Project is on Github: https://github.com/dtgritman/Flixtras
Flixtras - Flixtor Extra Functionality क्या है?
Flixtras - Flixtor Extra Functionality dtgeverything द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extra functionality and tools for Flixtor. Project is on Github: https://github.com/dtgritman/Flixtras"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Flixtras - Flixtor Extra Functionality एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This is a small project to add some extra functionality to Flixtor. Currently it only supports volume control with the scroll wheel when hovered over the video and displays a small overlay. Update 0.0.3: - Volume increments are now a dropdown menu - Overlay display can be disabled - Overlay position can be changed - Overlay opacity can be changed - Setting changes no longer require page refresh - More menu layout fixes - More restructuring of storage Update 0.0.2: - Added volume increment adjustment to menu - Fixed menu layout some - Restructured storage object for storing settings
एक्सटेंशन की मूल जानकारी
नाम | Flixtras - Flixtor Extra Functionality |
ID | jigkighnoeljhnmfkemlcijgdfjhligf |
आधिकारिक URL | https://chromewebstore.google.com/detail/flixtras-flixtor-extra-fu/jigkighnoeljhnmfkemlcijgdfjhligf |
विवरण | Extra functionality and tools for Flixtor. Project is on Github: https://github.com/dtgritman/Flixtras |
फ़ाइल का आकार | 39.39 KB |
स्थापना संख्या | 28 |
वर्तमान संस्करण | 0.0.3 |
अंतिम अपडेट | 2021-12-19 |
प्रकाशन तिथि | 2021-12-17 |
डेवलपर | dtgeverything |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/dtgritman/Flixtras |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Flixtras - Flixtor Extra Functionality", "version": "0.0.3", "icons": { "16": "\/images\/icon16.png", "48": "\/images\/icon48.png", "128": "\/images\/icon128.png" }, "description": "Extra functionality and tools for Flixtor. Project is on Github: https:\/\/github.com\/dtgritman\/Flixtras", "author": "Dustin Gritman", "manifest_version": 3, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/flixtor.to\/watch\/*", "https:\/\/flixtor.se\/watch\/*", "https:\/\/flixtor.vc\/watch\/*", "https:\/\/flixtor.nu\/watch\/*", "https:\/\/flixtor.sx\/watch\/*", "https:\/\/flixtor.tk\/watch\/*", "https:\/\/flixtor.cz\/watch\/*" ], "js": [ "jquery-3.6.0.slim.min.js", "content.js" ], "run_at": "document_end" } ], "action": { "default_popup": "popup.html" } } |