Cloud Gaming Buttoneer

Automatically hides buttons on certain cloud gaming services.

Cos'è Cloud Gaming Buttoneer?

Cloud Gaming Buttoneer è un'estensione di Chrome sviluppata da Deathspike, e la sua funzione principale è "Automatically hides buttons on certain cloud gaming services.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Cloud Gaming Buttoneer

Scarica i file di estensione Cloud Gaming Buttoneer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Cloud Gaming Buttoneer Cloud Gaming Buttoneer
ID bmapdieicgniiohhkfgpmafgfeileklk
URL Ufficiale https://chromewebstore.google.com/detail/cloud-gaming-buttoneer/bmapdieicgniiohhkfgpmafgfeileklk
Descrizione Automatically hides buttons on certain cloud gaming services.
Dimensione del File 9.12 KB
Conteggio Installazioni 971
Versione Corrente 1.0
Ultimo Aggiornamento 2021-11-24
Data di Pubblicazione 2021-11-23
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore Deathspike
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Deathspike/xbox-cloud-gaming-buttoneer
URL della Pagina di Aiuto https://github.com/Deathspike/xbox-cloud-gaming-buttoneer
Lingue Supportate 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"
            ]
        }
    ]
}