Bookmark Folder Hotkeys
Open bookmark folders with up to 4 global keyboard shortcuts.
Bookmark Folder Hotkeys란 무엇입니까?
Bookmark Folder Hotkeys은(는) Gavin Borg에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open bookmark folders with up to 4 global keyboard shortcuts."입니다.
확장 프로그램 스크린샷
Bookmark Folder Hotkeys 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | Bookmark Folder Hotkeys |
ID | ocjpbhmejkcfepjmledhecbgnfddiidg |
공식 URL | https://chromewebstore.google.com/detail/bookmark-folder-hotkeys/ocjpbhmejkcfepjmledhecbgnfddiidg |
설명 | Open bookmark folders with up to 4 global keyboard shortcuts. |
파일 크기 | 8.57 KB |
설치 횟수 | 79 |
현재 버전 | 3.0 |
최근 업데이트 | 2024-02-14 |
출시 날짜 | 2017-05-07 |
평점 | 4.00/5 총 3 개의 평점 |
개발자 | Gavin Borg |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/theborg3of5/BookmarkFolderHotkeys |
지원되는 언어 | 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" } } } } |