Roam Home Button

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

Roam Home Button là gì?

Roam Home Button là một tiện ích mở rộng Chrome được phát triển bởi Thomas Lisankie, và tính năng chính của nó là "Button to go to Daily Notes in Roam Research when left sidebar is hidden".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Roam Home Button

Tải xuống các tệp mở rộng Roam Home Button dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Roam Home Button Roam Home Button
ID fojfplndkdiiofmkpjcfcnifeliookod
URL Chính Thức https://chromewebstore.google.com/detail/roam-home-button/fojfplndkdiiofmkpjcfcnifeliookod
Mô tả Button to go to Daily Notes in Roam Research when left sidebar is hidden
Kích Thước Tệp 15.66 KB
Số Lần Cài Đặt 38
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2021-02-01
Ngày Phát Hành 2020-06-20
Nhà Phát Triển Thomas Lisankie
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/TomLisankie/roam-home-button
URL Trang Trợ Giúp https://github.com/TomLisankie/roam-home-button/issues
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}