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
screenshot
screenshot

RoamThemes 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 jordan.lyall@gmail.com
결제 유형 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\/*"
    ]
}