KickKit

Extension for Kick to enhance the experience with some utilities.

Что такое KickKit?

KickKit - это расширение Chrome, разработанное soruse, и его основная функция - "Extension for Kick to enhance the experience with some utilities.".

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

screenshot
screenshot
screenshot

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

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

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

                        KickKit provides utility options for kick.com streaming platform.

For now it can:
 - display images linked directly in the chat
 - blur the images first, and then reveal them by hovering
 - display basic information about youtube/streamable videos
- toggle visibility of top gifters/quick emote holder

More stuff coming soon!                    

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

Название KickKit KickKit
ID hbfobpefgbdlfgllfpdemkkfldejdkdk
Официальный URL https://chromewebstore.google.com/detail/kickkit/hbfobpefgbdlfgllfpdemkkfldejdkdk
Описание Extension for Kick to enhance the experience with some utilities.
Размер файла 81.93 KB
Количество установок 69
Текущая Версия 1.1.1
Последнее Обновление 2023-08-08
Дата публикации 2023-07-25
Рейтинг 5.00/5 Всего 3 оценок
Разработчик soruse
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://kickkit.vercel.app/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "KickKit",
    "version": "1.1.1",
    "description": "Extension for Kick to enhance the experience with some utilities.",
    "host_permissions": [
        "*:\/\/*.kick.com\/*"
    ],
    "permissions": [
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "content_script.js",
                "kk_styles.css"
            ],
            "matches": [
                "https:\/\/*.kick.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}