├── 3d.user.js ├── README.md ├── bookface.user.js ├── frisa.user.js ├── hotdog.user.js ├── plumber.user.js ├── terminal.user.js ├── topsecret.user.js └── win31.user.js /3d.user.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name Stack Overflow 3D glasses Filter 3 | // @namespace http://tampermonkey.net/ 4 | // @version 0.1 5 | // @description try to take over the world! 6 | // @author DonaldDuck313 7 | // @match https://stackoverflow.com/* 8 | // @icon https://www.google.com/s2/favicons?domain=stackoverflow.com 9 | // @grant none 10 | // ==/UserScript== 11 | 12 | (function() { 13 | 'use strict'; 14 | 15 | let css = document.createElement("link"); 16 | css.rel = "stylesheet"; 17 | css.type = "text/css"; 18 | css.href = "https://web.archive.org/web/20220331235805cs_/https://cdn.sstatic.net/Sites/stackoverflow/primary.css?v=0f27d01e00c2"; 19 | document.head.prepend(css); 20 | 21 | document.body.classList.add("theme-custom", "theme-3d"); 22 | })(); 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # StackOverflowFilters 2 | 3 | This is a set of user scripts that you can use on Stack Overflow to bring back the [filters from April 1st, 2022](https://meta.stackoverflow.com/q/416970/4284627). There is one user script per filter. To install the user scripts, download [Tampermonkey](https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo) (for Chrome or Edge) or [Greasemonkey](https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/) (for Firefox), and then click on one of the following links: 4 | 5 | - [3D glasses](https://github.com/DonaldDuck313/StackOverflowFilters/raw/main/3d.user.js) 6 | - [Bookface](https://github.com/DonaldDuck313/StackOverflowFilters/raw/main/bookface.user.js) 7 | - [Hot dog stand](https://github.com/DonaldDuck313/StackOverflowFilters/raw/main/hotdog.user.js) 8 | - [Frisa Lank](https://github.com/DonaldDuck313/StackOverflowFilters/raw/main/frisa.user.js) 9 | - [MariOverflow](https://github.com/DonaldDuck313/StackOverflowFilters/raw/main/plumber.user.js) 10 | - [Terminal](https://github.com/DonaldDuck313/StackOverflowFilters/raw/main/terminal.user.js) 11 | - [Top Secret](https://github.com/DonaldDuck313/StackOverflowFilters/raw/main/topsecret.user.js) 12 | - [Windows 3.1](https://github.com/DonaldDuck313/StackOverflowFilters/raw/main/win31.user.js) 13 | -------------------------------------------------------------------------------- /bookface.user.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name Stack Overflow Bookface Filter 3 | // @namespace http://tampermonkey.net/ 4 | // @version 0.1 5 | // @description try to take over the world! 6 | // @author DonaldDuck313 7 | // @match https://stackoverflow.com/* 8 | // @icon https://www.google.com/s2/favicons?domain=stackoverflow.com 9 | // @grant none 10 | // ==/UserScript== 11 | 12 | (function() { 13 | 'use strict'; 14 | 15 | let css = document.createElement("link"); 16 | css.rel = "stylesheet"; 17 | css.type = "text/css"; 18 | css.href = "https://web.archive.org/web/20220331235805cs_/https://cdn.sstatic.net/Sites/stackoverflow/primary.css?v=0f27d01e00c2"; 19 | document.head.prepend(css); 20 | 21 | document.body.classList.add("theme-custom", "theme-bookface"); 22 | })(); 23 | -------------------------------------------------------------------------------- /frisa.user.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name Stack Overflow Frisa Lank Filter 3 | // @namespace http://tampermonkey.net/ 4 | // @version 0.1 5 | // @description try to take over the world! 6 | // @author DonaldDuck313 7 | // @match https://stackoverflow.com/* 8 | // @icon https://www.google.com/s2/favicons?domain=stackoverflow.com 9 | // @grant none 10 | // ==/UserScript== 11 | 12 | (function() { 13 | 'use strict'; 14 | 15 | let css = document.createElement("link"); 16 | css.rel = "stylesheet"; 17 | css.type = "text/css"; 18 | css.href = "https://web.archive.org/web/20220331235805cs_/https://cdn.sstatic.net/Sites/stackoverflow/primary.css?v=0f27d01e00c2"; 19 | document.head.prepend(css); 20 | 21 | document.body.classList.add("theme-custom", "theme-frisa"); 22 | })(); 23 | -------------------------------------------------------------------------------- /hotdog.user.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name Stack Overflow Hot dog stand Filter 3 | // @namespace http://tampermonkey.net/ 4 | // @version 0.1 5 | // @description try to take over the world! 6 | // @author DonaldDuck313 7 | // @match https://stackoverflow.com/* 8 | // @icon https://www.google.com/s2/favicons?domain=stackoverflow.com 9 | // @grant none 10 | // ==/UserScript== 11 | 12 | (function() { 13 | 'use strict'; 14 | 15 | let css = document.createElement("link"); 16 | css.rel = "stylesheet"; 17 | css.type = "text/css"; 18 | css.href = "https://web.archive.org/web/20220331235805cs_/https://cdn.sstatic.net/Sites/stackoverflow/primary.css?v=0f27d01e00c2"; 19 | document.head.prepend(css); 20 | 21 | document.body.classList.add("theme-custom","theme-win31", "theme-hotdog"); 22 | })(); 23 | -------------------------------------------------------------------------------- /plumber.user.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name Stack Overflow MariOverflow Filter 3 | // @namespace http://tampermonkey.net/ 4 | // @version 0.1 5 | // @description try to take over the world! 6 | // @author DonaldDuck313 7 | // @match https://stackoverflow.com/* 8 | // @icon https://www.google.com/s2/favicons?domain=stackoverflow.com 9 | // @grant none 10 | // ==/UserScript== 11 | 12 | (function() { 13 | 'use strict'; 14 | 15 | let css = document.createElement("link"); 16 | css.rel = "stylesheet"; 17 | css.type = "text/css"; 18 | css.href = "https://web.archive.org/web/20220331235805cs_/https://cdn.sstatic.net/Sites/stackoverflow/primary.css?v=0f27d01e00c2"; 19 | document.head.prepend(css); 20 | 21 | document.body.classList.add("theme-custom", "theme-plumber"); 22 | })(); 23 | -------------------------------------------------------------------------------- /terminal.user.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name Stack Overflow Terminal Filter 3 | // @namespace http://tampermonkey.net/ 4 | // @version 0.1 5 | // @description try to take over the world! 6 | // @author DonaldDuck313 7 | // @match https://stackoverflow.com/* 8 | // @icon https://www.google.com/s2/favicons?domain=stackoverflow.com 9 | // @grant none 10 | // ==/UserScript== 11 | 12 | (function() { 13 | 'use strict'; 14 | 15 | let css = document.createElement("link"); 16 | css.rel = "stylesheet"; 17 | css.type = "text/css"; 18 | css.href = "https://web.archive.org/web/20220331235805cs_/https://cdn.sstatic.net/Sites/stackoverflow/primary.css?v=0f27d01e00c2"; 19 | document.head.prepend(css); 20 | 21 | document.body.classList.add("theme-custom","theme-dark", "theme-terminal"); 22 | })(); 23 | -------------------------------------------------------------------------------- /topsecret.user.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name Stack Overflow Top Secret Filter 3 | // @namespace http://tampermonkey.net/ 4 | // @version 0.1 5 | // @description try to take over the world! 6 | // @author DonaldDuck313 7 | // @match https://stackoverflow.com/* 8 | // @icon https://www.google.com/s2/favicons?domain=stackoverflow.com 9 | // @grant none 10 | // ==/UserScript== 11 | 12 | (function() { 13 | 'use strict'; 14 | 15 | let css = document.createElement("link"); 16 | css.rel = "stylesheet"; 17 | css.type = "text/css"; 18 | css.href = "https://web.archive.org/web/20220331235805cs_/https://cdn.sstatic.net/Sites/stackoverflow/primary.css?v=0f27d01e00c2"; 19 | document.head.prepend(css); 20 | 21 | document.body.classList.add("theme-custom", "theme-topsecret"); 22 | })(); 23 | -------------------------------------------------------------------------------- /win31.user.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name Stack Overflow Windows 3.1 Filter 3 | // @namespace http://tampermonkey.net/ 4 | // @version 0.1 5 | // @description try to take over the world! 6 | // @author DonaldDuck313 7 | // @match https://stackoverflow.com/* 8 | // @icon https://www.google.com/s2/favicons?domain=stackoverflow.com 9 | // @grant none 10 | // ==/UserScript== 11 | 12 | (function() { 13 | 'use strict'; 14 | 15 | let css = document.createElement("link"); 16 | css.rel = "stylesheet"; 17 | css.type = "text/css"; 18 | css.href = "https://web.archive.org/web/20220331235805cs_/https://cdn.sstatic.net/Sites/stackoverflow/primary.css?v=0f27d01e00c2"; 19 | document.head.prepend(css); 20 | 21 | document.body.classList.add("theme-custom", "theme-win31"); 22 | })(); 23 | --------------------------------------------------------------------------------