Roam Home Button
Button to go to Daily Notes in Roam Research when left sidebar is hidden
Roam Home Buttonとは何ですか?
Roam Home ButtonはThomas Lisankieによって開発されたChromeの拡張機能で、その主な機能は「Button to go to Daily Notes in Roam Research when left sidebar is hidden」です。
拡張機能のスクリーンショット
Roam Home Button拡張機能のCRXファイルをダウンロード
Roam Home Button拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Roam Home Button |
ID | fojfplndkdiiofmkpjcfcnifeliookod |
公式URL | https://chromewebstore.google.com/detail/roam-home-button/fojfplndkdiiofmkpjcfcnifeliookod |
説明 | Button to go to Daily Notes in Roam Research when left sidebar is hidden |
ファイルサイズ | 15.66 KB |
インストール数 | 38 |
現在のバージョン | 0.0.2 |
最終更新日 | 2021-02-01 |
公開日 | 2020-06-20 |
開発者 | Thomas Lisankie |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/TomLisankie/roam-home-button |
ヘルプページのURL | https://github.com/TomLisankie/roam-home-button/issues |
対応言語 | 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 } ] } |