Custom sites

create a website style

Что такое Custom sites?

Custom sites - это расширение Chrome, разработанное akimovivan355, и его основная функция - "create a website style".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        the application allows you to customize the interface of google and youtube. Select separate colors for the text of the background links using the full RGB palette for each site separately, the colors can be reset if necessary                    

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

Название Custom sites Custom sites
ID hiadibhippamgikegbcbfagpalmfoonh
Официальный URL https://chromewebstore.google.com/detail/custom-sites/hiadibhippamgikegbcbfagpalmfoonh
Описание create a website style
Размер файла 45.04 KB
Количество установок 42
Текущая Версия 4.1
Последнее Обновление 2023-01-24
Дата публикации 2021-09-01
Рейтинг 5.00/5 Всего 1 оценок
Разработчик akimovivan355
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Custom sites",
    "description": "create a website style",
    "version": "4.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "48": "image 3.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "host_permissions": [
        "*:\/\/*.google.com\/"
    ]
}