Cloud Gaming Buttoneer

Automatically hides buttons on certain cloud gaming services.

Vad är Cloud Gaming Buttoneer?

Cloud Gaming Buttoneer är en Chrome-tillägg utvecklad av Deathspike, och dess huvudfunktion är "Automatically hides buttons on certain cloud gaming services.".

Tilläggsskärmbilder

screenshot

Ladda ner Cloud Gaming Buttoneer-förlängningens CRX-fil

Ladda ner Cloud Gaming Buttoneer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Cloud Gaming Buttoneer Cloud Gaming Buttoneer
ID bmapdieicgniiohhkfgpmafgfeileklk
Officiell webbadress https://chromewebstore.google.com/detail/cloud-gaming-buttoneer/bmapdieicgniiohhkfgpmafgfeileklk
Beskrivning Automatically hides buttons on certain cloud gaming services.
Filstorlek 9.12 KB
Antal Installationer 971
Aktuell Version 1.0
Senast Uppdaterad 2021-11-24
Publiceringsdatum 2021-11-23
Betyg 5.00/5 Totalt 4 Betyg
Utvecklare Deathspike
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/Deathspike/xbox-cloud-gaming-buttoneer
Hjälpsida URL https://github.com/Deathspike/xbox-cloud-gaming-buttoneer
Stödda Språk 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"
            ]
        }
    ]
}