• 1000 Что я делаю не так?
// ==UserScript==
// @name Replace Multiple Spaces With One Space
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.google.com/search?q=replaceSpace
// @grant none
// ==/UserScript==
document.write("<input type='text' id='myText' value='Some text...'>");
document.write("<p id='demo'></p>");
document.write("<button onclick='myFunction()'>Try it</button>");
document.close();
function myFunction() {
var string = document.getElementById("myText").value;
string = string.replace(/\s\s+/g, ' ');
document.getElementById("demo").innerHTML = string;
}