Skip to content

Instantly share code, notes, and snippets.

@Ranamzes
Last active June 27, 2023 19:16
Show Gist options
  • Save Ranamzes/e4828fa727e26fdeb4dd98f26cde9074 to your computer and use it in GitHub Desktop.
Save Ranamzes/e4828fa727e26fdeb4dd98f26cde9074 to your computer and use it in GitHub Desktop.
Disable HolaVPN UI
// ==UserScript==
// @name HollaUI Disable
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Disable HolaVPN UI
// @author You
// @match *://*/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=hola.org
// @grant none
// ==/UserScript==
(function() {
'use strict';
setTimeout(() => {
let holla = document.getElementById('_hola_popup_iframe__');
if (holla) {
holla.setAttribute('style', 'display: none !important;');
}}, 1000)
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment