osu!antihover

Removes the need to hover over beatmaps. The space is already there. Use it.

Что такое osu!antihover?

osu!antihover - это расширение Chrome, разработанное Mr. HeliX, и его основная функция - "Removes the need to hover over beatmaps. The space is already there. Use it.".

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

screenshot

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

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

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

                        - Playcount, favourites, ranked/loved date, hypes, nominations are always visible on the beatmap panels on a user profile.
- Playcount and favourites shows the true amount, rather than the shortened version (for example 1012 instead of 1k)                    

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

Название osu!antihover osu!antihover
ID gfeeegihldjdainbhhnholofeepcoknl
Официальный URL https://chromewebstore.google.com/detail/osuantihover/gfeeegihldjdainbhhnholofeepcoknl
Описание Removes the need to hover over beatmaps. The space is already there. Use it.
Размер файла 6.08 KB
Количество установок 25
Текущая Версия 1.0
Последнее Обновление 2021-04-24
Дата публикации 2021-04-24
Разработчик Mr. HeliX
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "osu!antihover",
    "version": "1.0",
    "description": "Removes the need to hover over beatmaps. The space is already there. Use it.",
    "icons": {
        "48": "icon.png"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.osu.ppy.sh\/*"
            ],
            "js": [
                "antihover.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}