Extensions shortcut

Lets you create a keyboard shortcut to the extensions page

Was ist Extensions shortcut?

Extensions shortcut ist eine Chrome-Erweiterung, die von metarmask entwickelt wurde, und ihr Hauptmerkmal ist "Lets you create a keyboard shortcut to the extensions page".

Erweiterungsscreenshots

screenshot
screenshot

Extensions shortcut-Erweiterungs-CRX-Datei herunterladen

Laden Sie Extensions shortcut-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

                        An extremely lightweight extension (only runs when used) which lets you specify a custom keyboard shortcut which opens the extensions page.

If turned on in the options, this extension will check if you already have an extension page open and switch to that one instead of opening a new. Because it is an option you don't have to trust this extension with a dangerous permission if you don't want to.

Extension icon by Ganeshk (derived from "Wiki puzzle.svg") and Mysid (derived from "Insertpad.svg") both licensed under GFDL (http://www.gnu.org/copyleft/fdl.html) or CC-BY-SA-3.0 (http://creativecommons.org/licenses/by-sa/3.0/), via Wikimedia Commons.                    

Grundlegende Informationen zur Erweiterung

Name Extensions shortcut Extensions shortcut
ID boalecjkpmcokhlmpomldpdeohipkkda
Offizielle URL https://chromewebstore.google.com/detail/extensions-shortcut/boalecjkpmcokhlmpomldpdeohipkkda
Beschreibung Lets you create a keyboard shortcut to the extensions page
Dateigröße 12.73 KB
Installationsanzahl 2,859
Aktuelle Version 2
Letztes Update 2021-04-24
Veröffentlichungsdatum 2016-11-06
Bewertung 4.60/5 Insgesamt 10 Bewertungen
Entwickler metarmask
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Extensions shortcut",
    "description": "Lets you create a keyboard shortcut to the extensions page",
    "version": "2",
    "permissions": [
        "commands"
    ],
    "optional_permissions": [
        "tabs"
    ],
    "icons": {
        "128": "icon\/128.png",
        "16": "icon\/16.png",
        "48": "icon\/48.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "open-extensions-page": {
            "description": "Open extensions page",
            "suggested_key": {
                "default": "Ctrl+Shift+E"
            }
        }
    },
    "options_ui": {
        "chrome_style": true,
        "page": "options\/options.html"
    }
}