Greasy Fork is available in English.

允许双指,禁止双击缩放

允许浏览器使用双指缩放,禁止双击缩放

// ==UserScript==
// @name         允许双指,禁止双击缩放
// @namespace    https://viayoo.com/
// @version      0.1
// @description  允许浏览器使用双指缩放,禁止双击缩放
// @author       呆毛飘啊飘2171802813
// @run-at       document-start
// @match        https://*/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
var time=0;document.documentElement.addEventListener('touchend',function(e){var now=Date.now();if(now-time<300){e.preventDefault();}time = now;});
})();