Overleaf Dark Mode
hacky implementation of a dark mode for Overleaf
Что такое Overleaf Dark Mode?
Overleaf Dark Mode - это расширение Chrome, разработанное Jens Breitung, и его основная функция - "hacky implementation of a dark mode for Overleaf".
Снимки экрана расширения
Скачать файл CRX расширения Overleaf Dark Mode
Скачайте файлы расширений Overleaf Dark Mode в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
restyling components of the Overleaf UI since Overleaf does not support a full dark mode experience
Основная информация о расширении
Название | |
ID | ikljddlmgjbaieelllmogbclikdadhnf |
Официальный URL | https://chrome.google.com/webstore/detail/overleaf-dark-mode/ikljddlmgjbaieelllmogbclikdadhnf |
Описание | hacky implementation of a dark mode for Overleaf |
Размер файла | 12.78 KB |
Количество установок | 921 |
Текущая Версия | 0.0.1 |
Последнее Обновление | 2021-01-20 |
Дата публикации | 2021-01-20 |
Рейтинг | 1.09/5 Всего 11 оценок |
Разработчик | Jens Breitung |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Overleaf Dark Mode", "version": "0.0.1", "manifest_version": 2, "description": "hacky implementation of a dark mode for Overleaf", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/*.overleaf.com\/project\/*" ], "css": [ "styles.css" ], "js": [ "overleaf.js" ], "run_at": "document_end" } ], "browser_action": { "default_title": "Overleaf Dark Mode" } } |