Roam Navigator
Adds visual keyboard navigation to Roam (https://roamresearch.com/).
Roam Navigator là gì?
Roam Navigator là một tiện ích mở rộng Chrome được phát triển bởi mgsloan, và tính năng chính của nó là "Adds visual keyboard navigation to Roam (https://roamresearch.com/).".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Roam Navigator
Tải xuống các tệp mở rộng Roam Navigator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | jdnejinifclpmdnhchmadmjcmcjpcpbj |
URL Chính Thức | https://chromewebstore.google.com/detail/roam-navigator/jdnejinifclpmdnhchmadmjcmcjpcpbj |
Mô tả | Adds visual keyboard navigation to Roam (https://roamresearch.com/). |
Kích Thước Tệp | 30.96 KB |
Số Lần Cài Đặt | 197 |
Phiên Bản Hiện Tại | 18 |
Cập Nhật Lần Cuối | 2023-12-11 |
Ngày Phát Hành | 2020-06-30 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | mgsloan |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/mgsloan/roam-navigator |
URL Trang Trợ Giúp | https://github.com/mgsloan/roam-navigator/issues |
Ngôn Ngữ Được Hỗ Trợ | 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 } |