您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This script localizes WME Validator for Ireland. You also need main package (WME Validator) installed.
当前为
- // ==UserScript==
- // @name WME Validator Localization for Ireland
- // @version 1.1.8.6
- // @author lsin023
- // @description This script localizes WME Validator for Ireland. You also need main package (WME Validator) installed.
- // @match https://editor-beta.waze.com/*editor/*
- // @match https://www.waze.com/*editor/*
- // @grant none
- // @run-at document-start
- // @namespace https://greasyfork.org/users/15899
- // ==/UserScript==
- //
- /*
- See Settings->About->Available checks for complete list of checks and their params.
- Examples:
- Enable #170 "Lowercase street name" but allow lowercase "exit" and "to":
- "170.enabled": true,
- "170.params": {
- "regexp": "/^((exit|to) )?[a-z]/",
- "},
- Enable #130 "Custom check" to find a dot in street names, but allow dots at Ramps:
- "130.enabled": true,
- "130.params": {
- "titleEN": "Street name with a dot",
- "problemEN": "There is a dot in the street name (excluding Ramps)",
- "solutionEN": "Expand the abbreviation or remove the dot",
- "template": "${type}:${street}",
- "regexp": "D/^[^4][0-9]?:.*\\./",
- },
- *Note: use D at the beginning of RegExp to enable debugging on JS console.
- *Note: do not forget to escape backslashes in strings, i.e. use "\\" instead of "\".
- */
- window.WME_Validator_Ireland = {
- ".country": "Ireland",
- ".codeISO": "IE",
- ".author": "lsin023",
- ".updated": "2015-10-01",
- ".link": "TODO: ",
- "70.enabled": true,
- "70.problemLink": "W:How_to_label_and_name_roads_(Ireland)#Road_Types",
- "71.enabled": true,
- "71.problemLink": "W:How_to_label_and_name_roads_(Ireland)#Road_Types",
- "72.enabled": true,
- "72.problemLink": "W:How_to_label_and_name_roads_(Ireland)#Road_Types",
- "160.enabled": true,
- "160.params": {
- "solutionEN": "Rename the street to 'Mxx' or 'Mxx N/S/W/E' or change the road type",
- "regexp": "!/^M[0-9]+( [NSWE])?$/"
- },
- "160.problemLink": "W:How_to_label_and_name_roads_(Ireland)#Road_Types",
- "161.enabled": true,
- "161.params": {
- "solutionEN": "Rename the street to 'Nxx' or 'Nxx Local Name' or change the road type",
- "regexp": "!/^N[0-9]+( .*)?$/"
- },
- "161.problemLink": "W:How_to_label_and_name_roads_(Ireland)#Road_Types",
- "162.enabled": true,
- "162.params": {
- "solutionEN": "Rename the street to 'Rxxx' or 'Rxxx Local Name' or change the road type",
- "regexp": "!/^R[0-9]+( .*)?$/"
- },
- "162.problemLink": "W:How_to_label_and_name_roads_(Ireland)#Road_Types",
- "169.enabled": true,
- "169.params": {
- "solutionEN": "Rename the segment in accordance with the guidelines",
- "regexp": "!/^[a-záéíóúA-ZÁÉÍÓÚ0-9\\. '(/)-]+$/"
- },
- "169.problemLink": "W:How_to_label_and_name_roads_(Ireland)#Abbreviations",
- "170.enabled": true,
- "170.params": {
- "regexp": "/\\b(?!(?:to|s|of|na|an|penny)\\b)(?:[a-záéíóú]\\w*)\\b/"
- },
- "171.enabled": true,
- "171.params": {
- "regexp": "/\\b(?:Aly|Arc|Avenue|Bch|Bnd|Btm|Blvd|Brg?|Bdge?|Brks?|Bgs?|Byp|Cswy|Ctrs?|Cirs?|Clfs?|Close|Cors?|Court|Crk?|Cvs?|Crescent|Crs[et]|Dl|Drive|Ests?|Flds?|Gdns?|Gtwy|Gl?n|Gt|Gr[nv]?|Hvn|Hbrs?|Hls?|Hts|Hghts|Jctn|Lane|Lil|Ldg|Lower|Lr|Mnrs?|Mdws?|Mt|Orch|Ps?ge|Pde|Park|Pnes?|Place|Plns?|Plz|Please|Prts?|Private|Qy|Rename|Road|Spgs?|Squ?are|Saint|St(?!(?:\\.|$| (?:Lwr|Upr|[NSWE]|Great|Little|Middle|Arcade|Gardens|Cres)$))|St[an]|Str|Stree?t|Ter|Terr?ace|Tunl|Uppe?r?|Ur|Val|Vlys?|Vdct|Vw|Vlgs?|Wl?k|Wls?|North|East|South|West)\\b/i"
- },
- "171.problemLink": "W:How_to_label_and_name_roads_(Ireland)#Abbreviations"
- };