Skip to content

Instantly share code, notes, and snippets.

@darkstar
Created June 6, 2022 14:44
Show Gist options
  • Save darkstar/64e9fdea4e89714ae88d1fed58cce70e to your computer and use it in GitHub Desktop.
Save darkstar/64e9fdea4e89714ae88d1fed58cce70e to your computer and use it in GitHub Desktop.
Archive.org image unblur script for Tampermonkey
// ==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