Last active
April 19, 2023 20:01
-
-
Save selfawaresoup/f6d3d7ee41ccc3528889f784845fba06 to your computer and use it in GitHub Desktop.
Userscript for blurring link preview images on Mastodon instances
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 Test1 | |
// | |
// change the domain name to your Mastodon isntance's: | |
// @match https://strangeobject.space/* | |
// | |
// @run-at document-start | |
// @grant GM.addStyle | |
// ==/UserScript== | |
let css = ` | |
.status-card img { | |
filter: blur(10px); | |
} | |
` | |
GM.addStyle(css); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment