RoamThemes
Custom themes that help you personalize your Roam experience.
RoamThemes là gì?
RoamThemes là một tiện ích mở rộng Chrome được phát triển bởi https://roamthemes.io, và tính năng chính của nó là "Custom themes that help you personalize your Roam experience.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng RoamThemes
Tải xuống các tệp mở rộng RoamThemes dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | RoamThemes |
ID | iinnlcahmailoholehlbhbefddpbojpa |
URL Chính Thức | https://chromewebstore.google.com/detail/roamthemes/iinnlcahmailoholehlbhbefddpbojpa |
Mô tả | Custom themes that help you personalize your Roam experience. |
Kích Thước Tệp | 2.06 MB |
Số Lần Cài Đặt | 2,343 |
Phiên Bản Hiện Tại | 0.2 |
Cập Nhật Lần Cuối | 2020-08-16 |
Ngày Phát Hành | 2020-08-07 |
Đánh Giá | 4.67/5 Tổng số 12 Đánh Giá |
Nhà Phát Triển | https://roamthemes.io |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://roamthemes.io/ |
URL Trang Trợ Giúp | https://roamthemes.io/ |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |