ayaya's Bookmark Tree

Provides a button to show bookmark tree and open bookmark in new tab.

Qu'est-ce que ayaya's Bookmark Tree ?

ayaya's Bookmark Tree est une extension Chrome développée par ayaya, et sa fonction principale est "Provides a button to show bookmark tree and open bookmark in new tab.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension ayaya's Bookmark Tree

Téléchargez les fichiers d'extension ayaya's Bookmark Tree au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom ayaya's Bookmark Tree ayaya's Bookmark Tree
ID dneehabidhbfdiohdhbhjbbljobchgab
URL Officiel https://chromewebstore.google.com/detail/ayayas-bookmark-tree/dneehabidhbfdiohdhbhjbbljobchgab
Description Provides a button to show bookmark tree and open bookmark in new tab.
Taille du Fichier 33.59 KB
Nombre d'Installations 4,776
Version Actuelle 0.14.2
Dernière Mise à Jour 2023-07-18
Date de Publication 2019-12-24
Évaluation 4.55/5 Total 411 Évaluations
Développeur ayaya
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/ayamomiji/bookmark-tree
URL de la Page d'Aide https://github.com/ayamomiji/bookmark-tree/wiki/FAQ
Langues Prises en Charge 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'"
}