Last active
August 15, 2019 01:02
-
-
Save chuck0523/bd260ee3d9933f741ec2d436aa706549 to your computer and use it in GitHub Desktop.
UserScript for Tempermonkey to make modal wider at PropertyManager page
This file contains 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 Wider Modal - https://control.akamai.com/apps/property-manager/ | |
// @namespace https://gist.github.com/chuck0523/bd260ee3d9933f741ec2d436aa706549 | |
// @version 0.1 | |
// @description Make modal wider for visibility | |
// @author chuck0523 | |
// @match https://control.akamai.com/apps/property-manager/ | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
var $body = document.querySelector("body") | |
var $style = document.createElement("style") | |
$style.innerHTML = | |
'.container { width: 70vw !important; }' + | |
'.modal-dialog { width: 70vw !important; }'; | |
$body.appendChild($style) | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment