Overleaf Dark Mode
hacky implementation of a dark mode for Overleaf
什么是Overleaf Dark Mode?
Overleaf Dark Mode是由Jens Breitung开发的Chrome扩展程序,该扩展的主要功能是“hacky implementation of a dark mode for Overleaf”。
扩展截图
下载Overleaf Dark Mode扩展crx文件
下载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"
}
} | |