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 |
| 官方網址 | 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"
}
} | |