Better Bookmarker

Save the current page: pick a bookmark folder from a searchable list

Was ist Better Bookmarker?

Better Bookmarker ist eine Chrome-Erweiterung, die von https://mythical5th.com entwickelt wurde, und ihr Hauptmerkmal ist "Save the current page: pick a bookmark folder from a searchable list".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Better Bookmarker-Erweiterungs-CRX-Datei herunterladen

Laden Sie Better Bookmarker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Each bookmark folder is presented with its full path in an ordered, searchable list. You can easily...

· Find the folder you want
· Create a new subfolder if necessary
· Bookmark the current page in that folder
· Edit the bookmark's title and address


Open the Popup: Alt+B
Choose another shortcut: chrome://extensions/shortcuts


Credit:
"node-diacritics" by Andrew Kelley, licensed under the MIT License (Expat)
https://github.com/andrewrk/node-diacritics/blob/master/index.js                    

Grundlegende Informationen zur Erweiterung

Name Better Bookmarker Better Bookmarker
ID ighoahmfodeijcamlhoodoglhjdcgflf
Offizielle URL https://chromewebstore.google.com/detail/better-bookmarker/ighoahmfodeijcamlhoodoglhjdcgflf
Beschreibung Save the current page: pick a bookmark folder from a searchable list
Dateigröße 58.82 KB
Installationsanzahl 17
Aktuelle Version 1.3
Letztes Update 2024-02-09
Veröffentlichungsdatum 2019-01-30
Bewertung 4.00/5 Insgesamt 1 Bewertungen
Entwickler https://mythical5th.com
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite http://mythical5th.com/policies/chromeWebStore.html
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.3",
    "name": "__MSG_extName__",
    "description": "__MSG_extDesc__",
    "short_name": "bookmarker",
    "default_locale": "en",
    "minimum_chrome_version": "117",
    "action": {
        "default_icon": {
            "16": "icons\/icon16-white.png",
            "32": "icons\/icon32-white.png"
        },
        "default_title": "__MSG_extName__",
        "default_popup": "popup\/popup.html"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+B"
            }
        }
    },
    "icons": {
        "16": "icons\/icon16-yellow.png",
        "32": "icons\/icon32-yellow.png",
        "48": "icons\/icon48-yellow.png",
        "128": "icons\/icon128-yellow.png"
    },
    "permissions": [
        "activeTab",
        "bookmarks",
        "declarativeContent"
    ],
    "background": {
        "service_worker": "sw.js",
        "type": "module"
    }
}