Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name GOG NSFW filter
- // @version 2024-07-31
- // @description Hides NSFW games on GOG
- // @match https://www.gog.com/*
- // @exclude https://www.gog.com/*NSFW*
- // @run-at document-start
- // ==/UserScript==
- (function() {
- 'use strict';
- let oldUrl = window.location.pathname;
- let newUrl;
- let joiner = oldUrl.includes("?") ? "&" : "?";
- newUrl = oldUrl + joiner + "excludeTags=NSFW";
- window.location.replace (newUrl);
- })();
Advertisement
Add Comment
Please, Sign In to add comment