Cloud Gaming Buttoneer

Automatically hides buttons on certain cloud gaming services.

O que é Cloud Gaming Buttoneer?

Cloud Gaming Buttoneer é uma extensão do Chrome desenvolvida por Deathspike, e sua principal característica é "Automatically hides buttons on certain cloud gaming services.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Cloud Gaming Buttoneer

Baixe arquivos de extensão Cloud Gaming Buttoneer 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

                        Xbox Cloud Gaming works well within Chrome-based browsers, but the two buttons on the top-left of the screen are both distracting and annoying. This extension aims to remedy that; the buttons are automatically hidden after mouse/keyboard inactivity, and will re-appear when you move your mouse. It's that simple.                    

Informações Básicas da Extensão

Nome Cloud Gaming Buttoneer Cloud Gaming Buttoneer
ID bmapdieicgniiohhkfgpmafgfeileklk
URL Oficial https://chromewebstore.google.com/detail/cloud-gaming-buttoneer/bmapdieicgniiohhkfgpmafgfeileklk
Descrição Automatically hides buttons on certain cloud gaming services.
Tamanho do Arquivo 9.12 KB
Contagem de Instalações 971
Versão Atual 1.0
Última Atualização 2021-11-24
Data de Publicação 2021-11-23
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor Deathspike
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Deathspike/xbox-cloud-gaming-buttoneer
URL da Página de Ajuda https://github.com/Deathspike/xbox-cloud-gaming-buttoneer
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cloud Gaming Buttoneer",
    "description": "Automatically hides buttons on certain cloud gaming services.",
    "version": "1.0",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/016.png",
        "48": "icons\/048.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.xbox.com\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "inject-script.js"
            ]
        }
    ]
}