由于现在畅言的云评论的会员机制,非会员会有广告,故针对非会员的普通用户或者自建网站博主等提供去除广告
直接上代码吧
下面这个是我的changyan.ejs,其他的方法一样
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| <script charset="utf-8" type="text/javascript" src="https://changyan.sohu.com/upload/changyan.js" ></script> <script type="text/javascript"> /** * 方法实现说明 * @method 去除畅言云评论的非会员广告 * @author humingfeng * @version 1.0 * @exception * @date 2019-08-07 15:30 */ (function () { var style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = '#pop_ad{ display: none !important; }'; document.getElementsByTagName('HEAD').item(0).appendChild(style);
var __observe = window.MutationObserver.prototype.observe; window.MutationObserver.prototype.observe = function (target, options) { if (target.id !== "cy-cmt-list") return __observe(); return setTimeout(function () { document.getElementById('feedAv').style.cssText = 'display: none !important'; }, 0); }; }()); </script>
|
关注Github:1/2极客
关注博客:御前提笔小书童
关注网站:HuMingfeng
关注公众号:开发者的花花世界
本作品采用知识共享署名 4.0 中国大陆许可协议进行许可,欢迎转载,但转载请注明来自御前提笔小书童,并保持转载后文章内容的完整。本人保留所有版权相关权利。
本文链接:https://royalscholar.cn/2019/08/24/去除畅言云评论的非会员广告/