Extensions shortcut

Lets you create a keyboard shortcut to the extensions page

Qu'est-ce que Extensions shortcut ?

Extensions shortcut est une extension Chrome développée par metarmask, et sa fonction principale est "Lets you create a keyboard shortcut to the extensions page".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Extensions shortcut

Téléchargez les fichiers d'extension Extensions shortcut 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

                        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.                    

Informations de Base sur l'Extension

Nom Extensions shortcut Extensions shortcut
ID boalecjkpmcokhlmpomldpdeohipkkda
URL Officiel https://chromewebstore.google.com/detail/extensions-shortcut/boalecjkpmcokhlmpomldpdeohipkkda
Description Lets you create a keyboard shortcut to the extensions page
Taille du Fichier 12.73 KB
Nombre d'Installations 2,859
Version Actuelle 2
Dernière Mise à Jour 2021-04-24
Date de Publication 2016-11-06
Évaluation 4.60/5 Total 10 Évaluations
Développeur metarmask
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}