Overleaf Dark Mode

A dark mode for the online LaTeX editor Overleaf.

Что такое Overleaf Dark Mode?

Overleaf Dark Mode - это расширение Chrome, разработанное Tushar Muralidharan, и его основная функция - "A dark mode for the online LaTeX editor Overleaf.".

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

screenshot

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

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

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

                        The extension inverts colours in the editor, PDF viewer, and modals, and adds a dark background to most content panes. It may be toggled by clicking on the icon.                    

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

Название Overleaf Dark Mode Overleaf Dark Mode
ID iepehlcmgnghepgeldbflbpaplenegpf
Официальный URL https://chrome.google.com/webstore/detail/iepehlcmgnghepgeldbflbpaplenegpf
Описание A dark mode for the online LaTeX editor Overleaf.
Размер файла 13.97 KB
Количество установок 5,146
Текущая Версия 1.4
Последнее Обновление 2022-08-07
Дата публикации 2022-04-15
Рейтинг 5.00/5 Всего 7 оценок
Разработчик Tushar Muralidharan
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Overleaf Dark Mode",
    "description": "A dark mode for the online LaTeX editor Overleaf.",
    "version": "1.4",
    "manifest_version": 3,
    "icons": {
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Click to toggle dark mode"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.overleaf.com\/project\/*"
            ],
            "js": [
                "toggle.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}