Roam Navigator

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

Qu'est-ce que Roam Navigator ?

Roam Navigator est une extension Chrome développée par mgsloan, et sa fonction principale est "Adds visual keyboard navigation to Roam (https://roamresearch.com/).".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Roam Navigator

Téléchargez les fichiers d'extension Roam Navigator au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Roam Navigator Roam Navigator
ID jdnejinifclpmdnhchmadmjcmcjpcpbj
URL Officiel https://chromewebstore.google.com/detail/roam-navigator/jdnejinifclpmdnhchmadmjcmcjpcpbj
Description Adds visual keyboard navigation to Roam (https://roamresearch.com/).
Taille du Fichier 30.96 KB
Nombre d'Installations 197
Version Actuelle 18
Dernière Mise à Jour 2023-12-11
Date de Publication 2020-06-30
Évaluation 5.00/5 Total 4 Évaluations
Développeur mgsloan
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/mgsloan/roam-navigator
URL de la Page d'Aide https://github.com/mgsloan/roam-navigator/issues
Langues Prises en Charge 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
}