Cloud Gaming Buttoneer

Automatically hides buttons on certain cloud gaming services.

Что такое Cloud Gaming Buttoneer?

Cloud Gaming Buttoneer - это расширение Chrome, разработанное Deathspike, и его основная функция - "Automatically hides buttons on certain cloud gaming services.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Cloud Gaming Buttoneer

Скачайте файлы расширений Cloud Gaming Buttoneer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Cloud Gaming Buttoneer Cloud Gaming Buttoneer
ID bmapdieicgniiohhkfgpmafgfeileklk
Официальный URL https://chromewebstore.google.com/detail/cloud-gaming-buttoneer/bmapdieicgniiohhkfgpmafgfeileklk
Описание Automatically hides buttons on certain cloud gaming services.
Размер файла 9.12 KB
Количество установок 971
Текущая Версия 1.0
Последнее Обновление 2021-11-24
Дата публикации 2021-11-23
Рейтинг 5.00/5 Всего 4 оценок
Разработчик Deathspike
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/Deathspike/xbox-cloud-gaming-buttoneer
URL страницы помощи https://github.com/Deathspike/xbox-cloud-gaming-buttoneer
Поддерживаемые языки 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"
            ]
        }
    ]
}