index.html 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1" />
  6. <link rel="stylesheet" href="../style.css#" type="text/css" />
  7. <title>利用用户自定义样式屏蔽不良信息</title>
  8. <script type="text/javascript">
  9. function findLang(){
  10. let href = location.href;
  11. for(let i=href.length-1;i>0;i--){
  12. if('/'==href.charAt(i) && '/'==href.charAt(i-3))
  13. return i;
  14. }
  15. return 0;
  16. }
  17. function nav2(page){
  18. let i = findLang();
  19. location.href = location.href.substring(0,i+1)+page;
  20. }
  21. function nav2Lang(lang){
  22. let i = findLang();
  23. let href = location.href;
  24. location.href = location.href.substring(0,i-2)+lang+location.href.substring(i);
  25. }
  26. </script>
  27. </head>
  28. <body>
  29. <header class='header'>
  30. <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>
  31. <nav>
  32. </nav>
  33. </header>
  34. <br />
  35. <div class="container">
  36. <h1 class="title">利用用户自定义样式屏蔽不良信息
  37. <br>
  38. <span class="subtitle"></span>
  39. </h1>
  40. <ul class="tags">
  41. <li><a href="../tags/%e4%b8%8d%e8%89%af%e4%bf%a1%e6%81%af%e5%b1%8f%e8%94%bd/index.html#">不良信息屏蔽</a> </li>
  42. <li><a href="../tags/css/index.html#">css</a> </li>
  43. </ul>
  44. <p>点击以下链接可安装全局样式,清后台重启浏览器,长按底部工具条窗口按钮弹出对话框后勾选上述文件名即可屏蔽不良信息。<br>
  45. <a href="i:0hcss/floppymoose.css:http://www.floppymoose.com/userContent.css">floppymoose 广告屏蔽样式</a><br>
  46. <a href="i:0hcss/gozer.css:https://www.gozer.org/mozilla/ad_blocking/css/ad_blocking.css">gozer 广告屏蔽样式</a></p>
  47. <p><a href="../index.html#">超微浏览器</a>支持<a href="../adblock_domain/index.html">根域名屏蔽</a>,完全绝杀手机不良信息小厂。但少部分不良信息大厂本身也提供高质量的内容服务,它们可以将不良信息伪装成正常的内容从而逃脱域名绝杀。<br>
  48. 对这一部分不良信息而言,我们可以利用超微浏览器的自定义样式功能加以屏蔽。</p>
  49. </div>
  50. <p>Last Modified: 2 April 2024<br>
  51. add js function in README<br>
  52. <pre></pre>
  53. </p>
  54. <script id='jsgiscus'
  55. src='https://giscus.app/client.js'
  56. data-repo="torappinfo/uweb"
  57. data-repo-id="MDEwOlJlcG9zaXRvcnkzMDIyMDU3MjE="
  58. data-category="Announcements"
  59. data-category-id="DIC_kwDOEgNLGc4CQjsh"
  60. data-mapping="title"
  61. data-strict="0"
  62. data-reactions-enabled="1"
  63. data-emit-metadata="0"
  64. data-input-position="top"
  65. data-theme="light"
  66. data-lang="en"
  67. data-loading="lazy"
  68. crossorigin="anonymous" async>
  69. </script>
  70. <footer class="site-footer">
  71. <div class="container">
  72. &copy; 2018-2024 Richard H. Cao
  73. </div>
  74. </footer>
  75. <!-- This document is licensed under the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is available at <https://www.gnu.org/licenses/>. -->
  76. </body>
  77. </html>