您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Redirects general Google searches to web mode (udm=14), avoiding some nonsense.
当前为
// ==UserScript== // @name Always use Google Web mode (udm=14) // @namespace https://github.com/isaacl // @version 0.1 // @description Redirects general Google searches to web mode (udm=14), avoiding some nonsense. // @author Isaac Levy // @license MIT // @match *://www.google.com/search // @match *://www.google.com/search?* // @run-at document-start // @homepageURL https://github.com/isaacl/il-userscripts // @supportURL https://github.com/isaacl/il-userscripts/issues // ==/UserScript== (function() { 'use strict'; if (!window.location.search.includes('udm=14')) { const urlParams = new URLSearchParams(window.location.search) if (!urlParams.has('udm')) { urlParams.append('udm', '14'); window.location.search = urlParams.toString(); } } })();