Skip to content

Instantly share code, notes, and snippets.

@abivos
Last active April 28, 2021 12:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abivos/dcfd7b6046ad3fd437dcd1b0027dfd8d to your computer and use it in GitHub Desktop.
Save abivos/dcfd7b6046ad3fd437dcd1b0027dfd8d to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name zenmod.clearview
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Remove blur over vape juices.
// @author anon
// @match https://*.zenmod.ru/*
// @match https://*.zenmod.shop/*
// @icon https://www.google.com/s2/favicons?domain=tampermonkey.net
// @grant none
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js
// ==/UserScript==
(function() {
'use strict';
waitForKeyElements (".has_nicotine", deleteNotHot);
function deleteNotHot (jNode) {
jNode.removeClass ("has_nicotine");
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment