Bookmark Folder Hotkeys

Open bookmark folders with up to 4 global keyboard shortcuts.

What is Bookmark Folder Hotkeys?

Bookmark Folder Hotkeys is a Chrome extension developed by Gavin Borg, and its main feature is "Open bookmark folders with up to 4 global keyboard shortcuts.".

Extension Screenshots

screenshot

Download Bookmark Folder Hotkeys Extension CRX File

Download Bookmark Folder Hotkeys extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Bookmark Folder Hotkeys Bookmark Folder Hotkeys
ID ocjpbhmejkcfepjmledhecbgnfddiidg
Official URL https://chromewebstore.google.com/detail/bookmark-folder-hotkeys/ocjpbhmejkcfepjmledhecbgnfddiidg
Description Open bookmark folders with up to 4 global keyboard shortcuts.
File Size 8.57 KB
Installation Count 79
Current Version 3.0
Last Updated 2024-02-14
Publish Date 2017-05-07
Rating 4.00/5 Total 3 Ratings
Developer Gavin Borg
Email [email protected]
Payment Type free
Extension Website https://github.com/theborg3of5/BookmarkFolderHotkeys
Supported Languages 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"
            }
        }
    }
}