RoamThemes
Custom themes that help you personalize your Roam experience.
Was ist RoamThemes?
RoamThemes ist eine Chrome-Erweiterung, die von https://roamthemes.io entwickelt wurde, und ihr Hauptmerkmal ist "Custom themes that help you personalize your Roam experience.".
Erweiterungsscreenshots
RoamThemes-Erweiterungs-CRX-Datei herunterladen
Laden Sie RoamThemes-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | iinnlcahmailoholehlbhbefddpbojpa |
| Offizielle URL | https://chromewebstore.google.com/detail/roamthemes/iinnlcahmailoholehlbhbefddpbojpa |
| Beschreibung | Custom themes that help you personalize your Roam experience. |
| Dateigröße | 2.06 MB |
| Installationsanzahl | 2,343 |
| Aktuelle Version | 0.2 |
| Letztes Update | 2020-08-16 |
| Veröffentlichungsdatum | 2020-08-07 |
| Bewertung | 4.67/5 Insgesamt 12 Bewertungen |
| Entwickler | https://roamthemes.io |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://roamthemes.io/ |
| Hilfeseite URL | https://roamthemes.io/ |
| Unterstützte Sprachen | 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\/*"
]
} | |