Canvas Themeinator
Gives Canvas more themes
Что такое Canvas Themeinator?
Canvas Themeinator - это расширение Chrome, разработанное one23four56, и его основная функция - "Gives Canvas more themes".
Снимки экрана расширения
Скачать файл CRX расширения Canvas Themeinator
Скачайте файлы расширений Canvas Themeinator в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension adds themes to Canvas. Currently, there are 10: -Dark -AMOLED Dark -Light -Aqua -Purple -Dark Purple -Blue -Dark Blue -Green -Orange +Custom Themes (currently in beta) This extension is open-source. The GitHub link is below: https://github.com/one23four56/canvas-themeinator This extension is a SIDE PROJECT of mine. Do not expect regular updates, I am only maintaining this because I use it. If you really want a feature, go onto GitHub and add it yourself.
Основная информация о расширении
Название | Canvas Themeinator |
ID | ffhddhjbbaocbeejjijfioimiplpfgbb |
Официальный URL | https://chromewebstore.google.com/detail/canvas-themeinator/ffhddhjbbaocbeejjijfioimiplpfgbb |
Описание | Gives Canvas more themes |
Размер файла | 25.61 KB |
Количество установок | 299 |
Текущая Версия | 1.5.1 |
Последнее Обновление | 2021-04-17 |
Дата публикации | 2021-04-12 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | one23four56 |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/one23four56/canvas-themeinator |
URL страницы политики конфиденциальности | https://github.com/one23four56/canvas-themeinator/blob/master/privacy.md |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Canvas Themeinator", "version": "1.5.1", "description": "Gives Canvas more themes", "content_scripts": [ { "matches": [ "https:\/\/*.instructure.com\/*" ], "css": [ "style.css" ], "js": [ "content.js" ], "run_at": "document_start" } ], "permissions": [ "storage" ], "action": { "default_title": "Choose Theme", "default_popup": "html\/index.html" }, "icons": { "32": "icon.png" } } |