Flixtras - Flixtor Extra Functionality

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

O que é Flixtras - Flixtor Extra Functionality?

Flixtras - Flixtor Extra Functionality é uma extensão do Chrome desenvolvida por dtgeverything, e sua principal característica é "Extra functionality and tools for Flixtor. Project is on Github: https://github.com/dtgritman/Flixtras".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Flixtras - Flixtor Extra Functionality

Baixe arquivos de extensão Flixtras - Flixtor Extra Functionality no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Flixtras - Flixtor Extra Functionality Flixtras - Flixtor Extra Functionality
ID jigkighnoeljhnmfkemlcijgdfjhligf
URL Oficial https://chromewebstore.google.com/detail/flixtras-flixtor-extra-fu/jigkighnoeljhnmfkemlcijgdfjhligf
Descrição Extra functionality and tools for Flixtor. Project is on Github: https://github.com/dtgritman/Flixtras
Tamanho do Arquivo 39.39 KB
Contagem de Instalações 28
Versão Atual 0.0.3
Última Atualização 2021-12-19
Data de Publicação 2021-12-17
Desenvolvedor dtgeverything
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/dtgritman/Flixtras
Idiomas Suportados 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"
    }
}