Stylized Scrollbar

Stylize your scroll bar from a handful of presets

Что такое Stylized Scrollbar?

Stylized Scrollbar - это расширение Chrome, разработанное Andrew Li, и его основная функция - "Stylize your scroll bar from a handful of presets".

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

screenshot
screenshot

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

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

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

                        An extension that customizes your scroll bar to either a black or white one. Works on all websites and can be changed on the fly into black or white. Check out the style of the scroll bar above                    

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

Название Stylized Scrollbar Stylized Scrollbar
ID igpchmaapelclmhofnheepclmfniobnc
Официальный URL https://chromewebstore.google.com/detail/stylized-scrollbar/igpchmaapelclmhofnheepclmfniobnc
Описание Stylize your scroll bar from a handful of presets
Размер файла 449 KB
Количество установок 57
Текущая Версия 0.1.0
Последнее Обновление 2021-01-23
Дата публикации 2021-01-22
Разработчик Andrew Li
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/Zeyu-Li/scroll_with_style
URL страницы помощи https://github.com/Zeyu-Li/scroll_with_style/discussions/categories/bugs
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Stylized Scrollbar",
    "author": "Andrew Li",
    "version": "0.1.0",
    "manifest_version": 2,
    "description": "Stylize your scroll bar from a handful of presets",
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "images\/icon_128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html",
        "default_title": "Custom Scrollbar"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "options_page": "popup.html"
}