RoamThemes

Custom themes that help you personalize your Roam experience.

RoamThemesคืออะไร?

RoamThemes เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://roamthemes.io และคุณลักษณะหลักของมันคือ "Custom themes that help you personalize your Roam experience."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย RoamThemes

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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\/*"
    ]
}