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".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Roam Home Button

قم بتنزيل ملفات الامتداد Roam Home Button بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 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
عنوان صفحة المساعدة 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
        }
    ]
}