Created
May 16, 2019 11:10
-
-
Save simondahla/57a2b8607c62c5e61f0db744bd8b5934 to your computer and use it in GitHub Desktop.
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 Remove loading screen from Google Optimize | |
// @version 0.1 | |
// @description Script to remove the annoying loading screen... | |
// @author @simondahla | |
// @match https://optimize.google.com/optimize/home/ | |
// ==/UserScript== | |
(function() { | |
var element = document.getElementsByClassName('opt-busy-dialog') | |
if (element.length > 0) { | |
element[0].parentNode.removeChild(element[0]); | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment