Skip to content

Instantly share code, notes, and snippets.

@TheGP
Last active November 2, 2021 13:16
Show Gist options
  • Save TheGP/de306fd1d5e068f0b8df4a9a22e19e6f to your computer and use it in GitHub Desktop.
Save TheGP/de306fd1d5e068f0b8df4a9a22e19e6f to your computer and use it in GitHub Desktop.
unbluring images on zenmode.shop отключение размытия изображений на сайте zenmode.shop (script for tamper/greese/violent monkey) установите плагин tamper/greese/violent monkey, нажмите добавить скрипт и скопируйте туда содержимое
// ==UserScript==
// @name zenmod unblur
// @version 1
// @grant GM_addStyle
// @include https://chel.zenmod.shop/*
// @include http://*.zenmod.shop/*
// @run-at document-start
// @author EugeneBos
// ==/UserScript==
GM_addStyle (`
.has_nicotine .prdc__img {
filter : none !important;
-webkit-filter : none !important;
}
.has_nicotine .product__gallery img {
filter : none !important;
-webkit-filter : none !important;
}
`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment