Background Changer

apply different colors to webpage background and find which looks perfect

Что такое Background Changer?

Background Changer - это расширение Chrome, разработанное ermajsurfaceret, и его основная функция - "apply different colors to webpage background and find which looks perfect".

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

screenshot

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

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

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

                        Background Changer help you apply different colors to your favorite websites background.                    

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

Название Background Changer Background Changer
ID dolkekeohjbdpclenociegcnolpipafo
Официальный URL https://chrome.google.com/webstore/detail/background-changer/dolkekeohjbdpclenociegcnolpipafo
Описание apply different colors to webpage background and find which looks perfect
Размер файла 19.77 KB
Количество установок 1,000
Текущая Версия 0.1
Последнее Обновление 2022-07-07
Дата публикации 2022-07-07
Рейтинг 3.00/5 Всего 1 оценок
Разработчик ermajsurfaceret
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Background Changer",
    "description": "apply different colors to webpage background and find which looks perfect",
    "version": "0.1",
    "icons": {
        "128": "icon.png"
    },
    "action": {
        "default_icon": "icon.png",
        "default_popup": "app.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "webNavigation"
    ]
}