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 djahren/2bd8a1274d83c5661789969f87a815f8 to your computer and use it in GitHub Desktop.
Save djahren/2bd8a1274d83c5661789969f87a815f8 to your computer and use it in GitHub Desktop.
Disable ScreenConnect (ConnectWise) Animation - User Script
// ==UserScript==
// @name Disable ScreenConnect Animation
// @namespace http://djahren.com/
// @version 0.1
// @description Disables the unnecessary animation on screen connect.
// @author Ahren Bader-Jarvis
// @match https://*.screenconnect.com/Host*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var disableAnim = document.createElement("Style");
disableAnim.innerHTML = "@keyframes SlideInLeft {0% {transform: translateX(0px);} 100% {transform: translateX(0px);}} @keyframes SlideInLeftFar {0% {transform: translateX(0px);} 100% {transform: translateX(0px);}}";
document.getElementsByTagName("head")[0].appendChild(disableAnim);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment