Last active
November 2, 2021 13:16
-
-
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, нажмите добавить скрипт и скопируйте туда содержимое
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 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