Roam Navigator

Adds visual keyboard navigation to Roam (https://roamresearch.com/).

什麼是Roam Navigator?

Roam Navigator是由mgsloan開發的Chrome擴展程式,該擴展的主要功能是“Adds visual keyboard navigation to Roam (https://roamresearch.com/).”。

擴展截圖

screenshot

下載Roam Navigator擴展crx文件

下載Roam Navigator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Wherever you may Roam, it is essential to have an efficient navigator. This browser extension adds a navigation mode to Roam (https://roamresearch.com), which presents visual navigation hints, that can be typed in order to select the corresponding link, block, or button.  It also adds topbar "breadcrumbs" which allow you to quickly navigate to recent pages.

By default, navigation mode will be active when no input is focused. It can also be initiated by pressing `Alt+g`, or just `g` when not editing text. Visual navigation hints will then appear, allowing you to select links, starred pages, and select blocks to edit.

If this extension is useful to you, feel free to show your appreciation at https://www.buymeacoffee.com/mgsloan                    

擴展基本資訊

名稱 Roam Navigator Roam Navigator
ID jdnejinifclpmdnhchmadmjcmcjpcpbj
官方網址 https://chromewebstore.google.com/detail/roam-navigator/jdnejinifclpmdnhchmadmjcmcjpcpbj
簡介 Adds visual keyboard navigation to Roam (https://roamresearch.com/).
檔案大小 30.96 KB
安裝次數 197
目前版本 18
更新時間 2023-12-11
上架時間 2020-06-30
評分 5.00/5 共 4 次評分
開發者 mgsloan
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/mgsloan/roam-navigator
說明頁面URL https://github.com/mgsloan/roam-navigator/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Roam Navigator",
    "author": "Michael Sloan",
    "description": "Adds visual keyboard navigation to Roam (https:\/\/roamresearch.com\/).",
    "version": "18",
    "homepage_url": "https:\/\/github.com\/mgsloan\/roam-navigator",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/roamresearch.com\/*"
            ],
            "js": [
                "inject.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "roam-navigator.js"
            ],
            "matches": [
                "*:\/\/roamresearch.com\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "options-popup.html",
        "default_icon": {
            "128": "icon128.png"
        }
    },
    "icons": {
        "128": "icon128.png"
    },
    "content_security_policy": {
        "script-src": [
            "'self'"
        ]
    },
    "manifest_version": 3
}