Extensions shortcut

Lets you create a keyboard shortcut to the extensions page

什么是Extensions shortcut?

Extensions shortcut是由metarmask开发的Chrome扩展程序,该扩展的主要功能是“Lets you create a keyboard shortcut to the extensions page”。

扩展截图

screenshot
screenshot

下载Extensions shortcut扩展crx文件

下载Extensions shortcut扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Extensions shortcut Extensions shortcut
ID boalecjkpmcokhlmpomldpdeohipkkda
官方URL https://chromewebstore.google.com/detail/extensions-shortcut/boalecjkpmcokhlmpomldpdeohipkkda
简介 Lets you create a keyboard shortcut to the extensions page
文件大小 12.73 KB
安装次数 2,859
当前版本 2
更新时间 2021-04-24
上架时间 2016-11-06
评分 4.60/5 共10次评分
开发者 metarmask
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    }
}