Sharp, sharpen, sharpening, reshade
Opera Lucid Mode FIX - sharpen video/images by KirpichKrasniy

Details
AuthorKirpichKrasniy
LicenseNo License
Categoryyoutube
Created
Updated
Code size1.2 kB
Code checksumeade5f79
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
orig style: https://userstyles.world/style/13949/opera-lucid-mode-sharpen-videoimages
Source code
/* ==UserStyle==
@name Opera Lucid Mode FIX - sharpen video/images
@description Sharp, sharpen, sharpening, reshade
@version 0.1
@namespace KirpichKrasniy
@license MIT
@preprocessor uso
@var select selector Selector {
"Video*": "video",
"Video, Image": "video, img",
"Image": "img"
}
@var select edgeMod Selector {
"duplicate": "duplicate",
"wrap": "wrap",
"none": "none"
}
@var select strength Strength {
"Very low": "-0.1 -0.1 -0.1 -0.1 1.8 -0.1 -0.1 -0.1 -0.1",
"Low": "-0.2 -0.2 -0.2 -0.2 2.6 -0.2 -0.2 -0.2 -0.2",
"Normal*": "1 -1 1 -1 -1 -1 1 -1 1",
"High": "0 -1 0 -1 6 -1 0 -1 0",
"Very high": "-1 1 -1 1 1 1 -1 1 -1"
}
@var range rVideosMar "Videos spacing" [5, 0, 20, 1, "px"]
==/UserStyle== */
@-moz-document url-prefix("http") {
/*[[selector]]*/ {
filter: url('data:image/svg+xml,\
<svg xmlns="http://www.w3.org/2000/svg">\
<filter id="sharpen">\
<feConvolveMatrix order="3" style="color-interpolation-filters:sRGB" preserveAlpha="true" filterRes="100 100" edgeMode="/*[[edgeMod]]*/" kernelMatrix="/*[[strength]]*/"/>\
</filter>\
</svg>#sharpen')
}
}