RoamThemes

Custom themes that help you personalize your Roam experience.

Co to jest RoamThemes?

RoamThemes to rozszerzenie Chrome opracowane przez https://roamthemes.io, a jego główną funkcją jest „Custom themes that help you personalize your Roam experience.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia RoamThemes

Pobierz pliki rozszerzeń RoamThemes w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa RoamThemes RoamThemes
ID iinnlcahmailoholehlbhbefddpbojpa
Oficjalny URL https://chromewebstore.google.com/detail/roamthemes/iinnlcahmailoholehlbhbefddpbojpa
Opis Custom themes that help you personalize your Roam experience.
Rozmiar pliku 2.06 MB
Liczba instalacji 2,343
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2020-08-16
Data Publikacji 2020-08-07
Ocena 4.67/5 Łącznie 12 Oceny
Deweloper https://roamthemes.io
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://roamthemes.io/
Adres URL Strony Pomocy https://roamthemes.io/
Obsługiwane Języki 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\/*"
    ]
}