ayaya's Bookmark Tree

Provides a button to show bookmark tree and open bookmark in new tab.

ayaya's Bookmark Tree란 무엇입니까?

ayaya's Bookmark Tree은(는) ayaya에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Provides a button to show bookmark tree and open bookmark in new tab."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

ayaya's Bookmark Tree 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Provides a button to show bookmark tree and open bookmark in new tab.
Have options to add custom styles, modify click behaviors (for example, right click to open in new window instead of in new tab), set the root directory, etc.

This is the first extension I made.
I make this just because I don't like always show bookmark bar.

v0.14.2
Fix "Open in background tab" behavior.

v0.14.1
Remove tabs permission.

v0.14.0
Fix popup display issue.

Source code: https://github.com/ayamomiji/bookmark-tree                    

확장 프로그램 기본 정보

이름 ayaya's Bookmark Tree ayaya's Bookmark Tree
ID dneehabidhbfdiohdhbhjbbljobchgab
공식 URL https://chromewebstore.google.com/detail/ayayas-bookmark-tree/dneehabidhbfdiohdhbhjbbljobchgab
설명 Provides a button to show bookmark tree and open bookmark in new tab.
파일 크기 33.59 KB
설치 횟수 4,776
현재 버전 0.14.2
최근 업데이트 2023-07-18
출시 날짜 2019-12-24
평점 4.55/5 총 411 개의 평점
개발자 ayaya
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ayamomiji/bookmark-tree
도움말 페이지 URL https://github.com/ayamomiji/bookmark-tree/wiki/FAQ
지원되는 언어 en,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "__MSG_description__",
    "version": "0.14.2",
    "name": "__MSG_bookmarkTree__",
    "default_locale": "en",
    "options_page": "options.html",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "icons": {
        "128": "icon.png"
    },
    "manifest_version": 2,
    "permissions": [
        "chrome:\/\/favicon\/",
        "bookmarks"
    ],
    "commands": {
        "openBookmarkTreeInNewTab": {
            "description": "__MSG_openBookmarkTreeInNewTab__",
            "suggested_key": {
                "default": "Alt+B",
                "mac": "Command+B"
            }
        },
        "openBookmarkTreeInNewWindow": {
            "description": "__MSG_openBookmarkTreeInNewWindow__",
            "suggested_key": {
                "default": "Alt+K",
                "mac": "Command+K"
            }
        }
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}