Greasy Fork is available in English.

Filmweb.pl - Brak Automatycznego odświeżania i reklam

Dodaje #audit do url, dzięki któremu nie ma reklam na stronie oraz denerwującego automatycznego odświeżania

// ==UserScript==
// @name         Filmweb.pl - Brak Automatycznego odświeżania i reklam
// @namespace    https://greasyfork.org/users/124677-pabli
// @version      0.1
// @description  Dodaje #audit do url, dzięki któremu nie ma reklam na stronie oraz denerwującego automatycznego odświeżania
// @author       Pabli
// @license      MIT
// @match        https://www.filmweb.pl/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=filmweb.pl
// @run-at       document-start
// @grant        none
// ==/UserScript==

function addHash() {
	let url = new URL(document.URL);
	url.hash = '#audit';
	document.location.href = url.href;
}

addHash();

window.addEventListener('hashchange', function() {
	addHash();
});