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