Overleaf Dark Mode

A dark mode for the online LaTeX editor Overleaf.

什么是Overleaf Dark Mode?

Overleaf Dark Mode是由Tushar Muralidharan开发的Chrome扩展程序,该扩展的主要功能是“A dark mode for the online LaTeX editor Overleaf.”。

扩展截图

screenshot

下载Overleaf Dark Mode扩展crx文件

下载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"
    ]
}