回答:
検索バーを閉じるには、簡単な回避策が使用することですFn + Esc
というし、Esc
。
ただし、Esc
このスクリプト(この投稿に従って)を押すと、Chromeがフルスクリーンモードを閉じるのを簡単に防ぐことができます。
// ==UserScript==
// @name Keep Full Screen
// @namespace https://superuser.com/q/315949
// @description Prevents Escape key from leaving full screen.
// @include http://*
// ==/UserScript==
document.onkeydown = function (evt) {
if (evt.keyCode == 27) evt.preventDefault();
}
これを実行するには、NinjaKit Google Chrome拡張機能を使用できます。