Roam Reduced
A clean, automatic light/dark theme for Roam.
什麼是Roam Reduced?
Roam Reduced是由jdsimcoe開發的Chrome擴展程式,該擴展的主要功能是“A clean, automatic light/dark theme for Roam.”。
擴展截圖
下載Roam Reduced擴展crx文件
下載Roam Reduced擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This theme automatically applied light/dark styling based on your default system theme. It removes distracting elements, and improves the overall usage of Roam Research. 擴展基本資訊
| 名稱 | |
| ID | dlaojjkppiogjhnbhhdaoaeilfadcbgg |
| 官方網址 | https://chromewebstore.google.com/detail/roam-reduced/dlaojjkppiogjhnbhhdaoaeilfadcbgg |
| 簡介 | A clean, automatic light/dark theme for Roam. |
| 檔案大小 | 9.42 KB |
| 安裝次數 | 21 |
| 目前版本 | 0.2 |
| 更新時間 | 2020-06-03 |
| 上架時間 | 2020-06-02 |
| 評分 | 4.00/5 共 1 次評分 |
| 開發者 | jdsimcoe |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://jdsimcoe.com |
| 說明頁面URL | https://github.com/jdsimcoe/roam-reduced |
| 支援的語言 | en-US |
| manifest.json | |
{
"author": "Jonathan Simcoe",
"browser_action": {
"default_icon": "icon-128.png",
"default_title": "Roam Reduced"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.roamresearch.com\/*"
],
"js": [
"content-script.js"
],
"run_at": "document_end"
},
{
"matches": [
"*:\/\/*.roamresearch.com\/*"
],
"css": [
"reduced.css"
],
"run_at": "document_start"
}
],
"description": "A clean, automatic light\/dark theme for Roam.",
"homepage_url": "https:\/\/jdsimcoe.com\/",
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"manifest_version": 2,
"name": "Roam Reduced",
"permissions": [
"tabs",
"*:\/\/*.roamresearch.com\/#\/*"
],
"short_name": "RoamReduced",
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"version": "0.2"
} | |