BetterCanvas

Makes Canvas look better, also has customizable themes.

Что такое BetterCanvas?

BetterCanvas - это расширение Chrome, разработанное james wilson, и его основная функция - "Makes Canvas look better, also has customizable themes.".

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

screenshot

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

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

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

                        [BETA] Makes Canvas look better. Adds themes and makes it look nicer.                    

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

Название BetterCanvas BetterCanvas
ID lclfjjkhnbamoplnpplcjghfmcljafbm
Официальный URL https://chromewebstore.google.com/detail/bettercanvas/lclfjjkhnbamoplnpplcjghfmcljafbm
Описание Makes Canvas look better, also has customizable themes.
Размер файла 116 KB
Количество установок 562
Текущая Версия 0.0.999.4
Последнее Обновление 2021-10-25
Дата публикации 2021-10-22
Рейтинг 4.25/5 Всего 4 оценок
Разработчик james wilson
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BetterCanvas",
    "version": "0.0.999.4",
    "description": "Makes Canvas look better, also has customizable themes.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/issaquah.instructure.com\/*",
                "http:\/\/issaquah.instructure.com\/*",
                "http:\/\/issaquah.instructure.com\/bettercanvas",
                "https:\/\/issaquah.instructure.com\/bettercanvas"
            ],
            "js": [
                "sweetalert\/sweetalert.min.js",
                "content.js"
            ],
            "css": [
                "sweetalert\/sweetalert.css"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "manager.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "darklogo.png"
    ],
    "permissions": [
        "storage",
        "tabs"
    ]
}