Roam Home Button
Button to go to Daily Notes in Roam Research when left sidebar is hidden
Roam Home Buttonคืออะไร?
Roam Home Button เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Thomas Lisankie และคุณลักษณะหลักของมันคือ "Button to go to Daily Notes in Roam Research when left sidebar is hidden"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Roam Home Button
ดาวน์โหลดไฟล์ส่วนขยาย 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 } ] } |