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」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" } } |