ayaya's Bookmark Tree
Provides a button to show bookmark tree and open bookmark in new tab.
ayaya's Bookmark Tree là gì?
ayaya's Bookmark Tree là một tiện ích mở rộng Chrome được phát triển bởi ayaya, và tính năng chính của nó là "Provides a button to show bookmark tree and open bookmark in new tab.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng ayaya's Bookmark Tree
Tải xuống các tệp mở rộng ayaya's Bookmark Tree 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
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ayaya's Bookmark Tree |
ID | dneehabidhbfdiohdhbhjbbljobchgab |
URL Chính Thức | https://chromewebstore.google.com/detail/ayayas-bookmark-tree/dneehabidhbfdiohdhbhjbbljobchgab |
Mô tả | Provides a button to show bookmark tree and open bookmark in new tab. |
Kích Thước Tệp | 33.59 KB |
Số Lần Cài Đặt | 4,776 |
Phiên Bản Hiện Tại | 0.14.2 |
Cập Nhật Lần Cuối | 2023-07-18 |
Ngày Phát Hành | 2019-12-24 |
Đánh Giá | 4.55/5 Tổng số 411 Đánh Giá |
Nhà Phát Triển | ayaya |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/ayamomiji/bookmark-tree |
URL Trang Trợ Giúp | https://github.com/ayamomiji/bookmark-tree/wiki/FAQ |
Ngôn Ngữ Được Hỗ Trợ | 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'" } |