Cloud Gaming Buttoneer

Automatically hides buttons on certain cloud gaming services.

Co to jest Cloud Gaming Buttoneer?

Cloud Gaming Buttoneer to rozszerzenie Chrome opracowane przez Deathspike, a jego główną funkcją jest „Automatically hides buttons on certain cloud gaming services.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Cloud Gaming Buttoneer

Pobierz pliki rozszerzeń Cloud Gaming Buttoneer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Cloud Gaming Buttoneer Cloud Gaming Buttoneer
ID bmapdieicgniiohhkfgpmafgfeileklk
Oficjalny URL https://chromewebstore.google.com/detail/cloud-gaming-buttoneer/bmapdieicgniiohhkfgpmafgfeileklk
Opis Automatically hides buttons on certain cloud gaming services.
Rozmiar pliku 9.12 KB
Liczba instalacji 971
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2021-11-24
Data Publikacji 2021-11-23
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper Deathspike
E-mail roel.van.uden@hotmail.com
Typ Płatności free
Strona Rozszerzenia https://github.com/Deathspike/xbox-cloud-gaming-buttoneer
Adres URL Strony Pomocy https://github.com/Deathspike/xbox-cloud-gaming-buttoneer
Obsługiwane Języki 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"
            ]
        }
    ]
}