Bookmark Bar Switcher

Conveniently switch between multiple bookmark bars.

Bookmark Bar Switcher là gì?

Bookmark Bar Switcher là một tiện ích mở rộng Chrome được phát triển bởi Daniel Purtov, và tính năng chính của nó là "Conveniently switch between multiple bookmark bars.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Bookmark Bar Switcher

Tải xuống các tệp mở rộng Bookmark Bar Switcher 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

                        An extension allowing you to use more than one Bookmarks Bar.


[HOW TO USE]

All available bookmark bars will show up in the extension popup.
To switch between them, just click the one you would
like to switch to.

Alternatively, you can also switch using keyboard shortcuts. The default bindings are:
- Ctrl + UpArrow/DownArrow: Switch to the next or previous bookmark bar.
- Ctrl + Shift + 1: Switch to the first bookmark bar.
- Ctrl + Shift + 2: Switch to the second bookmark bar.

Additional shortcuts are available. To assign them or redefine existing shortcuts visit chrome://extensions/shortcuts.

You can add, rename, reorder and remove bookmark bars from within the extension:

- Add: Type the name of your new bar into the input field at the bottom and confirm with `Enter` or by clicking the PLUS-button.
- Edit: Either use the EDIT-button next to the bar you want to modify or double-click it. Type the new name and confirm with `Enter` or by clicking the SAVE-button.
- Reorder: Drag the bookmark bar to its desired position with the mouse and drop it.
- Remove: Enter the EDIT mode and click the DELETE button.

[HOW IT WORKS]

The extension exchanges the bookmarks inside the current bookmark bar with the ones within a chosen folder in the "Bookmark Bars" directory. The current bookmark bar will be backed up to a folder in "Bookmark Bars". The current bookmark bar will be called ***"My first bookmark bar 🚀"*** when you first install the extension.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Bookmark Bar Switcher Bookmark Bar Switcher
ID ogcdabloogpipelcphkhajkaneclpnlk
URL Chính Thức https://chromewebstore.google.com/detail/bookmark-bar-switcher/ogcdabloogpipelcphkhajkaneclpnlk
Mô tả Conveniently switch between multiple bookmark bars.
Kích Thước Tệp 153 KB
Số Lần Cài Đặt 1,773
Phiên Bản Hiện Tại 1.5.1
Cập Nhật Lần Cuối 2024-01-02
Ngày Phát Hành 2023-01-09
Đánh Giá 4.12/5 Tổng số 17 Đánh Giá
Nhà Phát Triển Daniel Purtov
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/danielptv/bookmark-bar-switcher
URL Trang Trợ Giúp https://github.com/danielptv/bookmark-bar-switcher
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Daniel Purtov",
    "description": "Conveniently switch between multiple bookmark bars.",
    "name": "Bookmark Bar Switcher",
    "version": "1.5.1",
    "manifest_version": 3,
    "permissions": [
        "bookmarks",
        "storage"
    ],
    "action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        },
        "default_popup": "src\/popup\/index.html",
        "default_title": "Bookmark Bar Switcher"
    },
    "background": {
        "service_worker": "src\/background\/main.js",
        "type": "module"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "commands": {
        "next-bar": {
            "suggested_key": {
                "default": "Ctrl+Down"
            },
            "description": "Switch to next bookmark bar."
        },
        "previous-bar": {
            "suggested_key": {
                "default": "Ctrl+Up"
            },
            "description": "Switch to previous bookmark bar."
        },
        "switch-to-1": {
            "suggested_key": {
                "default": "Ctrl+Shift+1"
            },
            "description": "Switch to 1. bookmark bar."
        },
        "switch-to-2": {
            "suggested_key": {
                "default": "Ctrl+Shift+2"
            },
            "description": "Switch to 2. bookmark bar."
        },
        "switch-to-3": {
            "description": "Switch to 3. bookmark bar."
        },
        "switch-to-4": {
            "description": "Switch to 4. bookmark bar."
        },
        "switch-to-5": {
            "description": "Switch to 5. bookmark bar."
        },
        "switch-to-6": {
            "description": "Switch to 6. bookmark bar."
        },
        "switch-to-7": {
            "description": "Switch to 7. bookmark bar."
        },
        "switch-to-8": {
            "description": "Switch to 8. bookmark bar."
        },
        "switch-to-9": {
            "description": "Switch to 9. bookmark bar."
        },
        "switch-to-10": {
            "description": "Switch to 10. bookmark bar."
        }
    }
}