Roam Home Button
Button to go to Daily Notes in Roam Research when left sidebar is hidden
Co to jest Roam Home Button?
Roam Home Button to rozszerzenie Chrome opracowane przez Thomas Lisankie, a jego główną funkcją jest „Button to go to Daily Notes in Roam Research when left sidebar is hidden”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Roam Home Button
Pobierz pliki rozszerzeń Roam Home Button 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
If you're like me, you like to keep the left sidebar hidden in Roam. However, you still want to be able to quickly go back to your Daily Notes (or "home"). This is a button for you.
Podstawowe informacje o rozszerzeniu
Nazwa | Roam Home Button |
ID | fojfplndkdiiofmkpjcfcnifeliookod |
Oficjalny URL | https://chromewebstore.google.com/detail/roam-home-button/fojfplndkdiiofmkpjcfcnifeliookod |
Opis | Button to go to Daily Notes in Roam Research when left sidebar is hidden |
Rozmiar pliku | 15.66 KB |
Liczba instalacji | 38 |
Aktualna Wersja | 0.0.2 |
Ostatnia Aktualizacja | 2021-02-01 |
Data Publikacji | 2020-06-20 |
Deweloper | Thomas Lisankie |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/TomLisankie/roam-home-button |
Adres URL Strony Pomocy | https://github.com/TomLisankie/roam-home-button/issues |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Roam Home Button", "icons": { "16": "images\/logo_16.png", "32": "images\/logo_32.png", "64": "images\/logo_64.png", "128": "images\/logo_128.png" }, "description": "Button to go to Daily Notes in Roam Research when left sidebar is hidden", "version": "0.0.2", "permissions": [ "https:\/\/roamresearch.com\/*" ], "manifest_version": 2, "web_accessible_resources": [ "images\/*" ], "browser_action": { "default_icon": { "16": "images\/logo_16.png", "32": "images\/logo_32.png", "64": "images\/logo_64.png" }, "default_title": "Roam Home Button" }, "content_scripts": [ { "matches": [ "https:\/\/roamresearch.com\/*" ], "js": [ "content_scripts\/content_script.js" ], "run_at": "document_idle", "all_frames": false } ] } |