|
一个是还原指针并取消点击特效,一个只有还原指针
按需使用吧
不过我觉得还挺好看的。
//@Name
- // ==UserScript==
- // @name 还原指针并取消点击特效
- // @version 0.13
- // @match https://www.gamemale.com/*
- // @run-at document-start
- // ==/UserScript==
- (function() {
- 'use strict';
- const observer = new MutationObserver(mutations => {
- mutations.forEach(mutation => {
- const addedNodes = mutation.addedNodes;
- for (let i = 0; i < addedNodes.length; i++) {
- const node = addedNodes[i];
- if (node.nodeType === Node.ELEMENT_NODE && node.matches('b[style]')) {
- node.remove();
- }
- }
- });
- });
- observer.observe(document.documentElement, {
- childList: true,
- subtree: true,
- });
- // 还原指针
- var style = document.createElement('style');
- style.type = 'text/css';
- style.innerHTML = `
- * {
- cursor: auto !important;
- }
- body {
- cursor: auto;
- }
- `;
- document.head.appendChild(style);
- })();
复制代码
这个是只有还原指针的
//@Name
- // ==UserScript==
- // @name 还原指针
- // @match https://www.gamemale.com/*
- // @run-at document-start
- // ==/UserScript==
- (function() {
- 'use strict';
- var style = document.createElement('style');
- style.type = 'text/css';
- style.innerHTML = `
- * {
- cursor: auto !important;
- }
- body {
- cursor: auto;
- }
- `;
- document.head.appendChild(style);
- })();
复制代码
|
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有账号?立即注册
x
评分
-
查看全部评分
|