Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuck0523/bd260ee3d9933f741ec2d436aa706549 to your computer and use it in GitHub Desktop.
Save chuck0523/bd260ee3d9933f741ec2d436aa706549 to your computer and use it in GitHub Desktop.
UserScript for Tempermonkey to make modal wider at PropertyManager page
// ==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