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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ayaya และคุณลักษณะหลักของมันคือ "Provides a button to show bookmark tree and open bookmark in new tab."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ayaya's Bookmark Tree

ดาวน์โหลดไฟล์ส่วนขยาย ayaya's Bookmark Tree ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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'"
}