img everywhere

make web with img as a huge mask over the whole site

// ==UserScript==
// @name         img everywhere
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  make web with img as a huge mask over the whole site
// @author       phone Dr.(咑咑)
// @match         *://*/*
// @require      https://code.jquery.com/jquery-3.6.3.min.js
// @icon         https://www.google.com/s2/favicons?sz=64&domain=ithome.com.tw
// @license MIT
// @grant        none
// ==/UserScript==

(function() {
$('body').append($('<div>').html(`<img class="imgbig" src="https://i.imgur.com/XFgohzL.jpg" referrerpolicy="no-referrer"  alt="">
`),$('<style>').html(`.imgbig{
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    opacity: .3;
    width : 100%;
    height : 100%;
    pointer-events:none;
}
`))





})();