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
公式URL 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
Eメール [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\/*"
    ]
}