Level's UI

Adds a custom UI that Level would use in krunker.io

Что такое Level's UI?

Level's UI - это расширение Chrome, разработанное GS Level, и его основная функция - "Adds a custom UI that Level would use in krunker.io".

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

screenshot

Скачать файл CRX расширения Level's UI

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

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

                        This is my krunker.io custom css/ui that I have put into an extension to make it easier for people to use it. To set the UI scale, you need to go into the settings, search "ui" and then click the button at the side of the UI scale slider, then slide the slider until it is at 0.7, and then click the button again.                    

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

Название Level's UI Level's UI
ID bopijmfplaeabkphdiefficheokjencc
Официальный URL https://chrome.google.com/webstore/detail/levels-ui/bopijmfplaeabkphdiefficheokjencc
Описание Adds a custom UI that Level would use in krunker.io
Размер файла 24.04 KB
Количество установок 20
Текущая Версия 1.0.0
Последнее Обновление 2021-05-10
Дата публикации 2021-05-10
Рейтинг 5.00/5 Всего 1 оценок
Разработчик GS Level
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Level's UI",
    "description": "Adds a custom UI that Level would use in krunker.io",
    "version": "1.0.0",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/krunker.io\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Level's UI",
        "default_icon": "LvLTransparent.png"
    },
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "permissions": [
        "storage"
    ]
}