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/)."입니다.
확장 프로그램 스크린샷
Roam Navigator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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 } |