Compass Dark Theme
Turn your compass school portal into a simpler and sleek looking design!
Что такое Compass Dark Theme?
Compass Dark Theme - это расширение Chrome, разработанное Valeriy Djulai, и его основная функция - "Turn your compass school portal into a simpler and sleek looking design!".
Снимки экрана расширения
Скачать файл CRX расширения Compass Dark Theme
Скачайте файлы расширений Compass Dark Theme в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Are you tired of the classic, boring and ugly compass interface? Well here's a nice extension to spice things up. Introducing dark theme for compass, a visual overhaul for the educational website Compass. Expect more themes in the near future.
Основная информация о расширении
Название | |
ID | djgcpgfednpfkdhoodgiokdelmefkine |
Официальный URL | https://chromewebstore.google.com/detail/compass-dark-theme/djgcpgfednpfkdhoodgiokdelmefkine |
Описание | Turn your compass school portal into a simpler and sleek looking design! |
Размер файла | 303 KB |
Количество установок | 206 |
Текущая Версия | 1.2 |
Последнее Обновление | 2019-05-13 |
Дата публикации | 2019-05-13 |
Рейтинг | 4.38/5 Всего 13 оценок |
Разработчик | Valeriy Djulai |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | http://mortalis.me |
URL страницы помощи | http://mortalis.me |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Compass Dark Theme", "version": "1.2", "description": "Turn your compass school portal into a simpler and sleek looking design!", "manifest_version": 2, "browser_action": { "default_popup": "options.html" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*.compass.education\/*" ], "run_at": "document_start", "js": [ "inject.js" ] }, { "matches": [ "https:\/\/*.compass.education\/*" ], "js": [ "site.js" ] } ], "icons": { "128": "logo.png" }, "web_accessible_resources": [ "images\/*.png", "styles\/*.css", "options.js" ] } |