ayaya's Bookmark Tree
Provides a button to show bookmark tree and open bookmark in new tab.
Co to jest ayaya's Bookmark Tree?
ayaya's Bookmark Tree to rozszerzenie Chrome opracowane przez ayaya, a jego główną funkcją jest „Provides a button to show bookmark tree and open bookmark in new tab.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia ayaya's Bookmark Tree
Pobierz pliki rozszerzeń ayaya's Bookmark Tree w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | ayaya's Bookmark Tree |
ID | dneehabidhbfdiohdhbhjbbljobchgab |
Oficjalny URL | https://chromewebstore.google.com/detail/ayayas-bookmark-tree/dneehabidhbfdiohdhbhjbbljobchgab |
Opis | Provides a button to show bookmark tree and open bookmark in new tab. |
Rozmiar pliku | 33.59 KB |
Liczba instalacji | 4,776 |
Aktualna Wersja | 0.14.2 |
Ostatnia Aktualizacja | 2023-07-18 |
Data Publikacji | 2019-12-24 |
Ocena | 4.55/5 Łącznie 411 Oceny |
Deweloper | ayaya |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/ayamomiji/bookmark-tree |
Adres URL Strony Pomocy | https://github.com/ayamomiji/bookmark-tree/wiki/FAQ |
Obsługiwane Języki | 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'" } |