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 |
公式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 |
Eメール | [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'" } |