What is Tampermonkey?

Tampermonkey is a donationware userscript manager that is available as a browser extension. This software enables the user to add and use userscripts, which are JavaScript programs that can be used to modify web pages.
Tampermonkey usage for Bravad application
This plugin is used for validating data and parameters of our products in the lab as well as customer service.
How to install on chrome browser?
Please look at the following video
Link of the website: https://www.tampermonkey.net/
After you successfully installed Tamper monkey, the application icon will appear on top right of your browser once it appears.
1.click on the application icon
2.click on add a new script
3.remove all the default codes on the file and add the following code
// ==UserScript==
// @name blanchard-prod
// @namespace http://tampermonkey.net/
// @match https://blanchard.keybook.com/*
// @require http://code.jquery.com/jquery-latest.js
// ==/UserScript==
(function() {
jQuery.loadScript = function (url, callback) {
jQuery.ajax({
url: url,
dataType: 'script',
success: callback,
async: true
});
}
if (typeof someObject == 'undefined') jQuery.loadScript('https://api.blcalculator.com/formbravad.blanchard-prod.js?1=' + Math.floor(Math.random() * 1000), function(){
console.log('script loaded (Pat)');
});
})();
if you still not sure how to complete this steps please contact your IT administrator.