This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name WME North Carolina Municipal Boundaries | |
// @namespace https://greasyfork.org/en/users/19861-vtpearce | |
// @description Creates polygons for WME "North Carolina Municipal Boundaries" layer | |
// @updateURL https://gist.github.com/vtnerd91/2625a001f396f0c72818/raw/North%20Carolina%20Municipal%20Boundaries.user.js | |
// @include https://www.waze.com/editor/* | |
// @include https://www.waze.com/*/editor/* | |
// @include https://editor-beta.waze.com/* | |
// @version 1.1.9 | |
// @grant none |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name WME South Carolina Municipal Areas | |
// @namespace https://greasyfork.org/en/users/19861-vtpearce | |
// @description Creates polygons for WME "South Carolina Municipal Areas" layer | |
// @updateURL https://gist.github.com/vtnerd91/622eb1cb32431f553c67/raw/South%20Carolina%20Municipal%20Areas.user.js | |
// @include https://www.waze.com/editor/* | |
// @include https://www.waze.com/*/editor/* | |
// @include https://editor-beta.waze.com/* | |
// @version 1.1.1 | |
// @grant none |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
if (!String.plFormat) { | |
String.plFormat = function (format) { | |
var args = Array.prototype.slice.call(arguments, 1); | |
return format.replace(/{(\d+)}/g, function (name, number) { | |
return typeof args[number] != "undefined" ? args[number] : match; | |
}); | |
}; | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
var count = 0; | |
var thisUser = W.loginManager.user; | |
if (thisUser === null) | |
return; | |
// var usrRank = thisUser.normalizedLevel; | |
var UpdateObject; | |
var UpdateSegmentAddress; | |
var AddAlternateStreet; | |
var cityName; |