Created
June 6, 2022 14:44
-
-
Save darkstar/64e9fdea4e89714ae88d1fed58cce70e to your computer and use it in GitHub Desktop.
Archive.org image unblur script for Tampermonkey
This file contains hidden or 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 Archive.org image unblur | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Un-blur "inapproriate" item images | |
// @author Darkstar | |
// @match https://archive.org/* | |
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== | |
// @grant GM_addStyle | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
GM_addStyle(' .blur15 { filter: blur(0) !important; }; '); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment