Skip to content

Instantly share code, notes, and snippets.

@devna13
Created September 12, 2023 15:35
Show Gist options
  • Save devna13/c9333d02320445ad43d1e9ce13f34e5b to your computer and use it in GitHub Desktop.
Save devna13/c9333d02320445ad43d1e9ce13f34e5b to your computer and use it in GitHub Desktop.
Azure DevOps Harvest plugin expand height vis tampermonkey script
// ==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