2020-05-09 14:42:57 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2020-04-29 08:37:43 +00:00
|
|
|
<meta charset="utf-8">
|
2020-05-09 14:42:57 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
2020-04-29 08:37:43 +00:00
|
|
|
|
2022-10-31 07:44:05 +00:00
|
|
|
<link rel="stylesheet" href="../style.css" type="text/css" />
|
2020-11-14 14:37:07 +00:00
|
|
|
<title>利用用户自定义样式屏蔽不良信息</title>
|
2022-06-30 03:43:09 +00:00
|
|
|
<script type="text/javascript">
|
2022-07-12 02:24:02 +00:00
|
|
|
function findLang(){
|
2022-06-30 03:43:09 +00:00
|
|
|
let href = location.href;
|
|
|
|
for(let i=href.length-1;i>0;i--){
|
|
|
|
if('/'==href.charAt(i) && '/'==href.charAt(i-3))
|
2022-07-12 02:24:02 +00:00
|
|
|
return i;
|
2022-06-30 03:43:09 +00:00
|
|
|
}
|
2022-07-12 02:24:02 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
function nav2(page){
|
|
|
|
let i = findLang();
|
|
|
|
location.href = location.href.substring(0,i+1)+page;
|
|
|
|
}
|
|
|
|
function nav2Lang(lang){
|
|
|
|
let i = findLang();
|
|
|
|
let href = location.href;
|
|
|
|
location.href = location.href.substring(0,i-2)+lang+location.href.substring(i);
|
2022-06-30 03:43:09 +00:00
|
|
|
}
|
|
|
|
</script>
|
2020-05-09 14:42:57 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header class='header'>
|
2022-06-30 03:43:09 +00:00
|
|
|
<a class="logo" href="javascript:void(0)" onclick="return nav2('index.html')">Home</a> <a class="logo" href="javascript:void(0)" onclick="return nav2('tags/index.html')">Tags</a>
|
2022-07-12 02:24:02 +00:00
|
|
|
|
2020-05-09 14:42:57 +00:00
|
|
|
<nav>
|
|
|
|
</nav>
|
|
|
|
</header>
|
2020-08-29 00:42:46 +00:00
|
|
|
<br />
|
2020-04-29 08:37:43 +00:00
|
|
|
|
2020-05-09 14:42:57 +00:00
|
|
|
<div class="container">
|
2020-11-14 14:37:07 +00:00
|
|
|
<h1 class="title">利用用户自定义样式屏蔽不良信息
|
2020-05-09 14:42:57 +00:00
|
|
|
<br>
|
|
|
|
<span class="subtitle"></span>
|
|
|
|
</h1>
|
|
|
|
<ul class="tags">
|
2020-04-29 08:37:43 +00:00
|
|
|
|
2020-11-14 14:37:07 +00:00
|
|
|
<li><a href="../tags/%e4%b8%8d%e8%89%af%e4%bf%a1%e6%81%af%e5%b1%8f%e8%94%bd">不良信息屏蔽</a> </li>
|
2020-04-29 08:37:43 +00:00
|
|
|
|
2020-10-08 07:39:48 +00:00
|
|
|
<li><a href="../tags/css">css</a> </li>
|
2020-04-29 08:37:43 +00:00
|
|
|
|
2020-05-09 14:42:57 +00:00
|
|
|
</ul>
|
2022-06-22 02:50:49 +00:00
|
|
|
<p>点击以下链接可安装全局样式,清后台重启浏览器,长按底部工具条窗口按钮弹出对话框后勾选上述文件名即可屏蔽不良信息。<br>
|
2022-07-09 00:45:17 +00:00
|
|
|
<a href="i:0hcss/floppymoose.css:http://www.floppymoose.com/userContent.css">floppymoose 广告屏蔽样式</a><br>
|
|
|
|
<a href="i:0hcss/gozer.css:https://www.gozer.org/mozilla/ad_blocking/css/ad_blocking.css">gozer 广告屏蔽样式</a></p>
|
2022-06-22 02:50:49 +00:00
|
|
|
<p><a href="../index.html">超微浏览器</a>支持<a href="../adblock_domain/index.html">根域名屏蔽</a>,完全绝杀手机不良信息小厂。但少部分不良信息大厂本身也提供高质量的内容服务,它们可以将不良信息伪装成正常的内容从而逃脱域名绝杀。<br>
|
2020-11-14 14:37:07 +00:00
|
|
|
对这一部分不良信息而言,我们可以利用超微浏览器的自定义样式功能加以屏蔽。</p>
|
2020-04-29 08:37:43 +00:00
|
|
|
|
|
|
|
</div>
|
2023-03-05 03:12:05 +00:00
|
|
|
<p>Last Modified: 24 September 2022<br>
|
2023-03-05 03:17:42 +00:00
|
|
|
i:0g/h to use relative path</p>
|
2020-04-29 08:37:43 +00:00
|
|
|
|
2020-05-09 14:42:57 +00:00
|
|
|
</body>
|
2020-04-29 08:37:43 +00:00
|
|
|
</html>
|