Bookmark Folder Hotkeys
Open bookmark folders with up to 4 global keyboard shortcuts.
Bookmark Folder Hotkeys là gì?
Bookmark Folder Hotkeys là một tiện ích mở rộng Chrome được phát triển bởi Gavin Borg, và tính năng chính của nó là "Open bookmark folders with up to 4 global keyboard shortcuts.".
Ả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 Bookmark Folder Hotkeys
Tải xuống các tệp mở rộng Bookmark Folder Hotkeys 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
Simple extension that opens all bookmarks in a folder based on user-defined keyboard shortcuts. Supports up to 4 folders/hotkeys. See options page for instructions on how to pick folders, hotkeys can be changed in Settings > Extensions > Keyboard Shortcuts. Default hotkeys are Ctrl+Shift+# (1-4). ------------------------ Icon by Yannick Lung: http://yannicklung.com/, https://www.iconfinder.com/icons/314685/bookmark_folder_icon Project released open-source, Github project available: https://github.com/theborg3of5/BookmarkFolderHotkeys ------------------------ Please note that this was made for personal use, so replies and fixes may be significantly delayed. ------------------------ Changelog: 1.1: Initial release, basic functionality. Better-looking options page and bookmark picker functionality slated for later. 1.2: Quick fix for options page not saving correctly. 2.0: Rewrite, should be more stable. Added more instructions to options page. 3.0: Update for manifest v3.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Bookmark Folder Hotkeys |
ID | ocjpbhmejkcfepjmledhecbgnfddiidg |
URL Chính Thức | https://chromewebstore.google.com/detail/bookmark-folder-hotkeys/ocjpbhmejkcfepjmledhecbgnfddiidg |
Mô tả | Open bookmark folders with up to 4 global keyboard shortcuts. |
Kích Thước Tệp | 8.57 KB |
Số Lần Cài Đặt | 79 |
Phiên Bản Hiện Tại | 3.0 |
Cập Nhật Lần Cuối | 2024-02-14 |
Ngày Phát Hành | 2017-05-07 |
Đánh Giá | 4.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Gavin Borg |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/theborg3of5/BookmarkFolderHotkeys |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bookmark Folder Hotkeys", "version": "3.0", "description": "Open bookmark folders with up to 4 global keyboard shortcuts.", "manifest_version": 3, "permissions": [ "bookmarks", "storage" ], "icons": { "16": "folderBookmark16.png", "48": "folderBookmark48.png", "64": "folderBookmark64.png", "128": "folderBookmark128.png" }, "background": { "service_worker": "service_worker.js" }, "incognito": "split", "options_ui": { "page": "options.html" }, "commands": { "openBookmarkFolder1": { "description": "Open Bookmark Folder 1", "suggested_key": { "default": "Ctrl+Shift+1" } }, "openBookmarkFolder2": { "description": "Open Bookmark Folder 2", "suggested_key": { "default": "Ctrl+Shift+2" } }, "openBookmarkFolder3": { "description": "Open Bookmark Folder 3", "suggested_key": { "default": "Ctrl+Shift+3" } }, "openBookmarkFolder4": { "description": "Open Bookmark Folder 4", "suggested_key": { "default": "Ctrl+Shift+4" } } } } |