Trying to remove a certain script from being loaded via greasemonkey: (so removing bascially removing the url and url part.)
....,"url":"https://this.site.com/xc/sample/dir?locale=en-us"},
...
Something like this?
var x = document.body.innerHTML;
x = x.match(/https\:\/\/this\.site\.com\/xc\/sample\/dir.*\"\/)[0];
x = x.replace(/something…/, “”);
alert(x);