Flixtras - Flixtor Extra Functionality

Extra functionality and tools for Flixtor. Project is on Github: https://github.com/dtgritman/Flixtras

Qu'est-ce que Flixtras - Flixtor Extra Functionality ?

Flixtras - Flixtor Extra Functionality est une extension Chrome développée par dtgeverything, et sa fonction principale est "Extra functionality and tools for Flixtor. Project is on Github: https://github.com/dtgritman/Flixtras".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Flixtras - Flixtor Extra Functionality

Téléchargez les fichiers d'extension Flixtras - Flixtor Extra Functionality au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Flixtras - Flixtor Extra Functionality Flixtras - Flixtor Extra Functionality
ID jigkighnoeljhnmfkemlcijgdfjhligf
URL Officiel https://chromewebstore.google.com/detail/flixtras-flixtor-extra-fu/jigkighnoeljhnmfkemlcijgdfjhligf
Description Extra functionality and tools for Flixtor. Project is on Github: https://github.com/dtgritman/Flixtras
Taille du Fichier 39.39 KB
Nombre d'Installations 28
Version Actuelle 0.0.3
Dernière Mise à Jour 2021-12-19
Date de Publication 2021-12-17
Développeur dtgeverything
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/dtgritman/Flixtras
Langues Prises en Charge 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"
    }
}