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 |
电子邮箱 | [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 } ] } |