Bookmark Switcher

Switch between several bookmark bars in a click!

Bookmark Switcher란 무엇입니까?

Bookmark Switcher은(는) Florent Catiau-Tristant에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Switch between several bookmark bars in a click!"입니다.

확장 프로그램 스크린샷

screenshot

Bookmark Switcher 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension creates multiple invisible bookmark bars.
You can add, rename, and remove bookmark bars from the addon popup.

Features:
- Create multiple bookmark bars with custom names (with emojis support! 🎉)
- Switch to the next bar using the handy keyboard shortcut Alt+Space!
- Anti spam system to avoid conflicts while switching quickly between bars

**I WILL NOT BE RESPONSIBLE IF YOU LOOSE ANY OF YOUR BOOKMARK**
Please make a backup of your bookmarks if they are important!

Compatibility note: This extension will likely not be compatible with Chromium bases browsers, has they may handle bookmarks differently. Known incompatibilities: Vivaldi                    

확장 프로그램 기본 정보

이름 Bookmark Switcher Bookmark Switcher
ID fcjhcgkhgmmejkfoalamnaijffdlgigd
공식 URL https://chromewebstore.google.com/detail/bookmark-switcher/fcjhcgkhgmmejkfoalamnaijffdlgigd
설명 Switch between several bookmark bars in a click!
파일 크기 567 KB
설치 횟수 215
현재 버전 1.2.0
최근 업데이트 2021-09-21
출시 날짜 2021-09-16
평점 4.50/5 총 4 개의 평점
개발자 Florent Catiau-Tristant
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Kapcash/bookmark-switcher
도움말 페이지 URL https://github.com/Kapcash/bookmark-switcher/issues
지원되는 언어 en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bookmark Switcher",
    "version": "1.2.0",
    "homepage_url": "https:\/\/github.com\/Kapcash",
    "description": "__MSG_extDescription__",
    "author": "Florent Catiau-Tristant",
    "default_locale": "en",
    "browser_specific_settings": {
        "gecko": {
            "id": "{b49fb79b-230f-4846-bfc4-11c9c99d41d8}",
            "strict_min_version": "80.0"
        }
    },
    "permissions": [
        "bookmarks",
        "storage"
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Switch bookmark bar",
        "default_icon": {
            "16": "icons\/16.png",
            "48": "icons\/48.png"
        }
    },
    "commands": {
        "next_bar": {
            "suggested_key": {
                "default": "Alt+Space"
            },
            "description": "Switch bookmark toolbars"
        }
    },
    "content_security_policy": "script-src 'self' ; object-src 'self'"
}