您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Script to redirect to your language automaticaly
当前为
// ==UserScript== // @name WME Language Forcer // @namespace https://www.bowlman.org // @description Script to redirect to your language automaticaly // @match https://editor-beta.waze.com/*editor* // @match https://beta.waze.com/*editor* // @match https://www.waze.com/*editor* // @match https://editor-beta.waze.com/*editor/* // @match https://beta.waze.com/*editor/* // @match https://www.waze.com/*/editor/* // @version 1.1 // @author tunisiano187 '2018 // @license MIT/BSD/X11 // @compatible chrome firefox // @supportURL mailto:incoming+WMEScripts/[email protected] // @contributionURL https://flattr.com/@tunisiano // @grant none // ==/UserScript== if (location.pathname.indexOf("/fr/editor") != 0) { setTimeout(function() { var fullpath = window.location.pathname+window.location.search; while(fullpath.substring(1,7) != "editor") { fullpath = fullpath.substring(1); } window.location.replace = window.location.replace('https://www.waze.com/fr' + fullpath); }, 1000); }