您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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;
- }
- `))
- })();