您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
使用relingo插件会影响页面样式,禁用relingo-audio-frame
当前为
// ==UserScript== // @name 禁用relingo-audio-frame // @namespace http://tampermonkey.net/ // @version 2025-09-10 // @description 使用relingo插件会影响页面样式,禁用relingo-audio-frame // @author wangze // @grant none // @license MIT // @connect baidu.com // @connect google.com // @connect google.com.hk // @connect google.com.jp // @connect bing.com // @connect duckduckgo.com // @connect dogedoge.com // @connect so.com // @connect localhost // @connect 90dao.com // @connect * // @include *://ipv6.baidu.com/* // @include *://www.baidu.com/* // @include *://www1.baidu.com/* // @include *://m.baidu.com/* // @include *://xueshu.baidu.com/s* // @include *://www.so.com/s?* // @include *://*.bing.com/* // @include *://encrypted.google.*/search* // @include *://*.google*/search* // @include *://scholar.google.com/scholar* // @include *://*.google*/webhp* // @include *://*duckduckgo.com/* // @include *://*.dogedoge.com/* // @include *://*.90dao.com/* // @include *://*.tujidu.com/* // @include *://**/* // @exclude *://*.google*/sorry* // @exclude https://zhidao.baidu.com/* // @exclude https://*.zhidao.baidu.com/* // @exclude https://www.baidu.com/img/* // @exclude https://lens.google.com/* // @supportURL https://ac.tujidu.com/ // ==/UserScript== (function() { 'use strict'; // 创建一个style元素 const style = document.createElement('style'); // 设置CSS内容 style.textContent = '#relingo-audio-frame { display: none !important; }'; // 将style元素添加到header中 document.head.appendChild(style); })();