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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Button to go to Daily Notes in Roam Research when left sidebar is hidden"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Roam Home Button एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 } ] } |