月別アーカイブ: 2017年11月

Microsoft Edgeでダブルタップズームを無効にする

Microsoft Edgeでダブルタップズームを無効にする:

1. 拡張機能 Tampermonkey を追加

2. Tampermonkeyのダッシュボードから新規スクリプト追加

3. スクリプトの内容:

// ==UserScript==
// @name disableTouchZoom
// @version 1
// @match http://*/*
// @match https://*/*
// @grant GM_addStyle
// ==/UserScript==

(function() {
‘use strict’;

// Your code here…
GM_addStyle(‘body {touch-action:manipulation !important;-ms-touch-action:manipulation !important}’);
})();

4. スクリプトの設定:

実行順序 1
実行のタイミング document-body
最上位フレームのみで実行する はい

5. スクリプトを保存

以上