Country Flags Scrollbar

Use your country flag as scrollbar, upload image from your own device or use a custom image as scrollbar. Fully customizble

Что такое Country Flags Scrollbar?

Country Flags Scrollbar - это расширение Chrome, разработанное Bhupesh Singh, и его основная функция - "Use your country flag as scrollbar, upload image from your own device or use a custom image as scrollbar. Fully customizble".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        You can change how your scrollbar looks. Add you own custom image or choose from the given list.

# Note: after installing it for first time, reload any open tabs for the extension to work.                    

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

Название Country Flags Scrollbar Country Flags Scrollbar
ID fgkbighieaohkbofflomdgickbdoncji
Официальный URL https://chromewebstore.google.com/detail/country-flags-scrollbar/fgkbighieaohkbofflomdgickbdoncji
Описание Use your country flag as scrollbar, upload image from your own device or use a custom image as scrollbar. Fully customizble
Размер файла 2.33 MB
Количество установок 59
Текущая Версия 2
Последнее Обновление 2024-01-31
Дата публикации 2023-11-04
Разработчик Bhupesh Singh
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://direct.me/bhupesh
URL страницы помощи https://direct.me/bhupesh
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Country Flags Scrollbar",
    "version": "2",
    "manifest_version": 3,
    "description": "Use your country flag as scrollbar, upload image from your own device or use a custom image as scrollbar. Fully customizble",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/logo\/logo-16.png",
            "32": "\/images\/logo\/logo-32.png",
            "48": "\/images\/logo\/logo-48.png",
            "128": "\/images\/logo\/logo-128.png"
        }
    },
    "icons": {
        "16": "\/images\/logo\/logo-16.png",
        "32": "\/images\/logo\/logo-32.png",
        "48": "\/images\/logo\/logo-48.png",
        "128": "\/images\/logo\/logo-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "myScript.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "options_page": "about.html",
    "web_accessible_resources": [
        {
            "resources": [
                "\/images\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage",
        "unlimitedStorage"
    ]
}