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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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/
عنوان صفحة المساعدة 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\/*"
    ]
}