Better Settings menu
Versión del día
// ==UserScript==
// @name MyFirstUserScript_Aaron
// @namespace AaronLong
// @version 1.1
// @description Better Settings menu
// @author AaronLong
// @match https://sap.service-now.com/*
// @match https://test.itsm.services.sap/*
// @match https://itsm.services.sap/*
// @icon https://www.google.com/s2/favicons?domain=services.sap
// ==/UserScript==
(function() {
'use strict';
var btn = document.createElement("button");
btn.innerHTML = "My button";
btn.onclick = () => {
alert("My button clicked !");
return false;
};
document.querySelector("btn_predecessor_selector").after(btn);
})();