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によって開発されたChromeの拡張機能で、その主な機能は「Extra functionality and tools for Flixtor. Project is on Github: https://github.com/dtgritman/Flixtras」です。
拡張機能のスクリーンショット
Flixtras - Flixtor Extra Functionality拡張機能のCRXファイルをダウンロード
Flixtras - Flixtor Extra Functionality拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
                        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                     拡張機能の基本情報
| 名前 |   |  
| 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 | 
| Eメール | [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"
    }
}  |  |