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 |
官方網址 | 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 |
電子郵箱 | [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 } ] } |