Roam Navigator

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

Roam Navigator क्या है?

Roam Navigator mgsloan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds visual keyboard navigation to Roam (https://roamresearch.com/)."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Roam Navigator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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
}