Cloud Gaming Buttoneer

Automatically hides buttons on certain cloud gaming services.

Was ist Cloud Gaming Buttoneer?

Cloud Gaming Buttoneer ist eine Chrome-Erweiterung, die von Deathspike entwickelt wurde, und ihr Hauptmerkmal ist "Automatically hides buttons on certain cloud gaming services.".

Erweiterungsscreenshots

screenshot

Cloud Gaming Buttoneer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Cloud Gaming Buttoneer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Cloud Gaming Buttoneer Cloud Gaming Buttoneer
ID bmapdieicgniiohhkfgpmafgfeileklk
Offizielle URL https://chromewebstore.google.com/detail/cloud-gaming-buttoneer/bmapdieicgniiohhkfgpmafgfeileklk
Beschreibung Automatically hides buttons on certain cloud gaming services.
Dateigröße 9.12 KB
Installationsanzahl 971
Aktuelle Version 1.0
Letztes Update 2021-11-24
Veröffentlichungsdatum 2021-11-23
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler Deathspike
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Deathspike/xbox-cloud-gaming-buttoneer
Hilfeseite URL https://github.com/Deathspike/xbox-cloud-gaming-buttoneer
Unterstützte Sprachen 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"
            ]
        }
    ]
}