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.”。
擴展截圖
下載ayaya's Bookmark Tree擴展crx文件
下載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 |
ID | dneehabidhbfdiohdhbhjbbljobchgab |
官方網址 | 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'" } |