MyFirstUserScript_Aaron

testing SNOW

Від 20.08.2021. Дивіться остання версія.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(У мене вже є менеджер скриптів, дайте мені встановити його!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         MyFirstUserScript_Aaron
// @namespace    AaronLong
// @version      1.4
// @description  testing SNOW
// @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';
 
 function addButton(text, onclickFunc, cssObj) {
     cssObj = cssObj || {fontWeight: '600', fontSize: '14px', backgroundColor: '#00cccc', color: 'white', border: 'none', padding: '10px 20px', };
     let div = document.createElement('div');
	 let button = document.createElement('button'), btnStyle = button.style	; 
     document.body.appendChild(div).appendChild(button);
     button.innerHTML = text;
     button.onclick = onclickFunc;
     Object.keys(cssObj).forEach(key => btnStyle[key] = cssObj[key]);
     return button;
 }
 
var onclick_testFunction ="function(){alert('Testing click!!!');return false;}";

addButton('CalcProcessingTime', onclick_testFunction,);
 
 })();