Created
September 12, 2023 15:35
-
-
Save devna13/c9333d02320445ad43d1e9ce13f34e5b to your computer and use it in GitHub Desktop.
Azure DevOps Harvest plugin expand height vis tampermonkey script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name New Userscript | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://dev.azure.com/currance-inc/Currance/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=azure.com | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
console.log("************** HERE ***********"); | |
setTimeout(() => { | |
document.getElementsByClassName("external-content-iframe")[0].style.height = "500px"; | |
document.getElementsByClassName("external-content-iframe")[0].style.backgroundColor = "#f5fff0"; | |
'aliceblue'; | |
document.getElementsByClassName("external-content-iframe")[1].style.height = "500px"; | |
document.getElementsByClassName("external-content-iframe")[1].style.backgroundColor = "#f5fff0"; | |
'aliceblue'; | |
}, 7000); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment