Skip to content

Instantly share code, notes, and snippets.

@e-t-l
e-t-l / OverrideDPIcontext.reg
Created November 10, 2023 20:54
Override per-program DPI (fix blurry apps on high-res displays)
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"
@e-t-l
e-t-l / Force-Chrono-Group.user.js
Last active February 7, 2024 23:00
Force-Chrono-Groups
// ==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
@e-t-l
e-t-l / optimize-fb-mobile.user.css
Last active February 7, 2024 22:59
Optimize-FB-mobile
/*
==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
@e-t-l
e-t-l / Keep-Passwords-Private.user.css
Created April 10, 2023 23:22
Prevents Google Chrome (and maybe other browsers) from scraping your passwords and sending it to their "spellcheck" servers
/*
@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
*/
@e-t-l
e-t-l / lobotomize-spoilers.user.css
Last active March 30, 2023 22:17
Lobotomize-spoilers
/*
==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
@e-t-l
e-t-l / redirect-to-english.js
Created December 1, 2022 17:36 — forked from loilo/redirect-to-english.js
Userscript: Redirect Website to its English Version
// 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>
@e-t-l
e-t-l / userChrome.css
Last active November 16, 2021 02:56
Firefox CSS: Hide "Add search engine" from bottom of URLbar dropdown/context-menu
[class*="searchbar-engine-one-off-add-engine"] {
display: none !important;
}
.searchbar-search-button[addengines=true] {
display: none !important;
}