Skip to content

Instantly share code, notes, and snippets.

@toth-dev
Last active March 9, 2024 11:03
Show Gist options
  • Save toth-dev/389cbceb24acf4813c4a449250a42857 to your computer and use it in GitHub Desktop.
Save toth-dev/389cbceb24acf4813c4a449250a42857 to your computer and use it in GitHub Desktop.
Prevent autorefresh on 444.hu
// ==UserScript==
// @name 444 prevent autorefresh
// @version 1
// @namespace https://github.com/toth-dev
// @icon https://cdn.444r.cloud/assets/favicon.59a582e6612fdac3b572.svg
//
// @include /^https://444.hu/
// @grant none
// @run-at document-idle
// ==/UserScript==
setTimeout(() => {
document.querySelector("#content-sidebar").setAttribute("id", "content-sidebar__disabled");
}, 3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment