Minimal Bookmarks Tree

Display a tree of bookmarks under a toolbar button, and search your bookmarks in the omnibox using the keyword 'bm'.

Τι είναι το Minimal Bookmarks Tree;

Το Minimal Bookmarks Tree είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Rémon van de Kamp, και η κύρια λειτουργία του είναι "Display a tree of bookmarks under a toolbar button, and search your bookmarks in the omnibox using the keyword 'bm'.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Minimal Bookmarks Tree

Λήψη αρχείων επέκτασης Minimal Bookmarks Tree σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension adds a button to Chrome in the top right corner (next to the "three-dot" settings button). When you click the button you get a tree of your bookmarks with folders that you can open and close by clicking them. A simple -non obtrusive- sliding animation is applied to the opening and closing of folders.

You can open bookmarks in the following ways:
- click: open in current tab
- middle-click (scrollwheel): open in new tab and close minimal bookmarks tree
- ctrl+click: open in new tab and keep minimal bookmarks tree open

You can also right click a folder and click "Open all" to open all bookmarks in that folder in tabs.

Right click also let's you edit/delete bookmarks and folders.

The tree uses simple folder icons that show their state (open/close) and also shows the favicons for the websites you've bookmarked.

The extension remembers which folders were open, so you can leave your favorite folders open at all times. 

Additionally the extension enables you to search through your bookmarks and bookmark folders easily by entering 'bm' into the URL bar (or "omnibox" as chrome calls it) and then type your search terms. It is not and will not be possible to search in the popup window itself because this wouldn't add anything to the extension; it would just duplicate behaviour.

The extension needs permission to view and edit your bookmarks, but will only ever edit bookmarks if you instruct it to, it will never change bookmarks on its own.

Minimal bookmarks tree is completely open source and available on github: https://github.com/rpkamp/chrome-minimal-bookmarks-tree

Any and all suggestions are welcome!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Minimal Bookmarks Tree Minimal Bookmarks Tree
ID mohenkbngkbmdlkiemonbgdfgdjacaeb
Επίσημο URL https://chromewebstore.google.com/detail/minimal-bookmarks-tree/mohenkbngkbmdlkiemonbgdfgdjacaeb
Περιγραφή Display a tree of bookmarks under a toolbar button, and search your bookmarks in the omnibox using the keyword 'bm'.
Μέγεθος Αρχείου 44.53 KB
Αριθμός Εγκαταστάσεων 10,713
Τρέχουσα Έκδοση 5.3.0
Τελευταία Ενημέρωση 2020-05-12
Ημερομηνία Δημοσίευσης 2020-05-10
Αξιολόγηση 4.52/5 Συνολικά 212 Αξιολογήσεις
Προγραμματιστής Rémon van de Kamp
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες de,en,nl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Minimal Bookmarks Tree",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "description": "Display a tree of bookmarks under a toolbar button, and search your bookmarks in the omnibox using the keyword 'bm'.",
    "version": "5.3.0",
    "minimum_chrome_version": "70",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "omnibox": {
        "keyword": "bm"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "bookmarks",
        "chrome:\/\/favicon\/",
        "fontSettings",
        "activeTab"
    ],
    "optional_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/",
        "file:\/\/*\/"
    ],
    "browser_action": {
        "default_title": "Minimal Bookmarks Tree",
        "default_popup": "browser_action.html",
        "default_icon": "icons\/bookmark32.png"
    },
    "icons": {
        "16": "icons\/bookmark32.png",
        "48": "icons\/bookmark128.png",
        "128": "icons\/bookmark128.png"
    },
    "default_locale": "en"
}