Roam Home Button

Button to go to Daily Notes in Roam Research when left sidebar is hidden

What is Roam Home Button?

Roam Home Button is a Chrome extension developed by Thomas Lisankie, and its main feature is "Button to go to Daily Notes in Roam Research when left sidebar is hidden".

Extension Screenshots

screenshot

Download Roam Home Button Extension CRX File

Download Roam Home Button extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Roam Home Button Roam Home Button
ID fojfplndkdiiofmkpjcfcnifeliookod
Official URL https://chromewebstore.google.com/detail/roam-home-button/fojfplndkdiiofmkpjcfcnifeliookod
Description Button to go to Daily Notes in Roam Research when left sidebar is hidden
File Size 15.66 KB
Installation Count 38
Current Version 0.0.2
Last Updated 2021-02-01
Publish Date 2020-06-20
Developer Thomas Lisankie
Email [email protected]
Payment Type free
Extension Website https://github.com/TomLisankie/roam-home-button
Help Page URL https://github.com/TomLisankie/roam-home-button/issues
Supported Languages 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
        }
    ]
}