Roam Home Button
Button to go to Daily Notes in Roam Research when left sidebar is hidden
Cos'è Roam Home Button?
Roam Home Button è un'estensione di Chrome sviluppata da Thomas Lisankie, e la sua funzione principale è "Button to go to Daily Notes in Roam Research when left sidebar is hidden".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Roam Home Button
Scarica i file di estensione Roam Home Button in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Roam Home Button |
ID | fojfplndkdiiofmkpjcfcnifeliookod |
URL Ufficiale | https://chromewebstore.google.com/detail/roam-home-button/fojfplndkdiiofmkpjcfcnifeliookod |
Descrizione | Button to go to Daily Notes in Roam Research when left sidebar is hidden |
Dimensione del File | 15.66 KB |
Conteggio Installazioni | 38 |
Versione Corrente | 0.0.2 |
Ultimo Aggiornamento | 2021-02-01 |
Data di Pubblicazione | 2020-06-20 |
Sviluppatore | Thomas Lisankie |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/TomLisankie/roam-home-button |
URL della Pagina di Aiuto | https://github.com/TomLisankie/roam-home-button/issues |
Lingue Supportate | 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 } ] } |