RoamThemes

Custom themes that help you personalize your Roam experience.

什麼是RoamThemes?

RoamThemes是由https://roamthemes.io開發的Chrome擴展程式,該擴展的主要功能是“Custom themes that help you personalize your Roam experience.”。

擴展截圖

screenshot

下載RoamThemes擴展crx文件

下載RoamThemes擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Style your Roam Research graph without writing CSS.

The RoamThemes extension allows you to quickly swap between many different themes for your personal Roam Research database. 

All themes are created by members of the Roam community (#roamcult):


FAVORITES

★ Better Roam Research

★ Dark Age

★ Leyendecker

★ Zentith

★ Yggdrasil


DARK MODE

★ Cosmonaut

★ Roam Nord

★ Dark Roam

★ Night Owlish

★ Apple Dark Mode

★ Hypnos


MORE COLORS

★ Roam Beautified

★ Roamness

★ Slightly Aesthetic

★ Candy

★ Sepia


MASHUP

★ Railscast for Roam

★ Zenithdecker

★ Grizzly


MINIMAL

★ Bear-like

★ Mappletons

★ Minimal - Monochrome

★ Caesar

★ Eis Heauton                    

擴展基本資訊

名稱 RoamThemes RoamThemes
ID iinnlcahmailoholehlbhbefddpbojpa
官方網址 https://chromewebstore.google.com/detail/roamthemes/iinnlcahmailoholehlbhbefddpbojpa
簡介 Custom themes that help you personalize your Roam experience.
檔案大小 2.06 MB
安裝次數 2,343
目前版本 0.2
更新時間 2020-08-16
上架時間 2020-08-07
評分 4.67/5 共 12 次評分
開發者 https://roamthemes.io
電子郵箱 [email protected]
付費類型 free
擴展官網 https://roamthemes.io/
說明頁面URL https://roamthemes.io/
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RoamThemes",
    "version": "0.2",
    "description": "Custom themes that help you personalize your Roam experience.",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/roamresearch.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "assets\/logo\/logo.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "assets\/logo\/logo-16.png",
        "48": "assets\/logo\/logo-48.png",
        "128": "assets\/logo\/logo-128.png"
    },
    "web_accessible_resources": [
        "themes\/css\/*",
        "assets\/js\/*"
    ]
}