Bookmark Hotkeys

Bookmark Hotkeys

Was ist Bookmark Hotkeys?

Bookmark Hotkeys ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Bookmark Hotkeys".

Erweiterungsscreenshots

screenshot

Bookmark Hotkeys-Erweiterungs-CRX-Datei herunterladen

Laden Sie Bookmark Hotkeys-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

                        Bookmark Hotkeys allows you to quickly access your bookmarks without using the mouse. This application is still in development!                    

Grundlegende Informationen zur Erweiterung

Name Bookmark Hotkeys Bookmark Hotkeys
ID ckadmgobfaomcmkfcnnbllmddpmkmdfe
Offizielle URL https://chromewebstore.google.com/detail/bookmark-hotkeys/ckadmgobfaomcmkfcnnbllmddpmkmdfe
Beschreibung Bookmark Hotkeys
Dateigröße 535 KB
Installationsanzahl 67
Aktuelle Version 2.2
Letztes Update 2015-10-21
Veröffentlichungsdatum 2015-10-20
Bewertung 4.40/5 Insgesamt 5 Bewertungen
Entwickler Unknown
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bookmark Hotkeys",
    "description": "Bookmark Hotkeys",
    "version": "2.2",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "bookmarks"
    ],
    "icons": {
        "128": "bookmark-black128.png"
    },
    "browser_action": {
        "default_title": "Bookmark Hotkeys"
    },
    "commands": {
        "open_bookmark_hotkeys": {
            "suggested_key": {
                "default": "Ctrl+Shift+E"
            },
            "description": "Open Bookmark Hotkeys",
            "global": false
        },
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y",
                "chromeos": "Ctrl+Shift+U",
                "linux": "Ctrl+Shift+J"
            }
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}