回答:
組み込みはありません。「Extensions HotKey」などの拡張機能をインストールするか、ショートカット/ホットキー管理拡張機能(「BookmarkBar HotKeys」など)を使用して、拡張機能ページ(chrome://extensions/
)をキーコンボに割り当てる必要があります。
私はこのシーケンスを使用します:Alt + F> L> E
そのための非常に簡単な拡張機能を作成できます。
拡張機能のマニフェストでショートカットを定義します:https : //developer.chrome.com/extensions/commands
"commands": {
"open-extensions-tab": {
"suggested_key": {
"default": "Ctrl+Shift+E",
"windows": "Ctrl+Shift+E",
"mac": "Command+Shift+E",
"linux": "Ctrl+Shift+E"
},
"description": "Open Extensions Tab"
}
}
そして、次のような拡張機能のマニフェストで定義されたショートカットをリッスンする1行のバックグラウンドスクリプト:
chrome.commands.onCommand.addListener(function(command){if(command=="open-extensions-tab")chrome.tabs.create({url:"chrome://extensions/"});});
これにより、拡張機能タブを開くためのCtrl + Shift + Eショートカットが追加されます
これのリポジトリを作成し、コードを読んでダウンロードし、拡張機能タブからアンパックされた拡張機能としてロードします
すぐにアクセスできるように、小さなAutohotkeyスクリプトを作成しました。
; Bound to "F1"
F1::
IfWinActive, New Tab
; Focus address bar
Send ^l
else
; Open new tab
Send ^t
SendInput chrome`:`/`/extensions`/{Enter}
長いものですが、うまく機能します。
最初は気分が良くなかったが、それで十分だ。