This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
;; Adds an option to the context menu of .EXE files to change the app's resolution, helpful if Windows Settings has Scaling set to anything other than 100% | |
;; Performs the same function as the Compatibility options in the file Properties. Helpful for executables that don't have a Compatibility tab, such as MMC.exe | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\exefile\shell\OverrideDPI] | |
"MUIVerb"="Override DPI" | |
"Icon"="regedit.exe" | |
"Position"="Bottom" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Chrono-Sort-Groups | |
// @namespace e-t-l | |
// @homepage https://gist.github.com/e-t-l/46eb62521ffbeec349bf70f1e0f68adf | |
// @downloadURL https://gist.github.com/e-t-l/46eb62521ffbeec349bf70f1e0f68adf/raw/6b8bc048615daab230facb6283ebeb18b2914a4f/Force-Chrono-Group.user.js | |
// @match https://www.facebook.com/groups/* | |
// @match https://www.reddit.com/r/* | |
// @version 2.4 | |
// @author e-t-l | |
// @license CC0-1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
==UserCSS== | |
@name Optimize-FB-mobile | |
@namespace e-t-l | |
@homepage https://gist.github.com/e-t-l/c38c977ca12c76040b56429ff5acf869 | |
downloadURL https://gist.github.com/e-t-l/c38c977ca12c76040b56429ff5acf869/raw/ | |
@match https://www.facebook.com/* | |
@version 1.5 | |
@author e-t-l | |
@license CC0-1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
@name Keep-Passwords-Private | |
@namespace e-t-l | |
@homepage https://gist.github.com/e-t-l/443a88820bad69c0f82691fecdfd02a4 | |
@match *://*/* | |
@version 1.0 | |
@author e-t-l | |
@license CC0-1.0 | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
==UserCSS== | |
@name Lobotomize Spoilers | |
@namespace e-t-l | |
@homepage https://gist.github.com/e-t-l/124575dbc273ad8b740ad83889e983ea | |
@match https://www.reddit.com/r/TheNinthHouse/* | |
@version 1.1 | |
@author e-t-l | |
@license CC0-1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This userscript redirects you to the English version of a website if it's denoted in the source code. | |
// Insert any URLs of websites below (after @match), for example https://developer.mozilla.org/* or https://www.php.net/* | |
// Use multiple @match clauses to enable the script on several domains. | |
// ==UserScript== | |
// @name Redirect to English | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @description Redirect websites to their English version | |
// @author Florian Reuschel <florian@loilo.de> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[class*="searchbar-engine-one-off-add-engine"] { | |
display: none !important; | |
} | |
.searchbar-search-button[addengines=true] { | |
display: none !important; | |
} |