ciker_li 发表于 2022-3-22 17:38

挂海论坛去广告油猴脚本

最近刚学油猴脚本,练练手
// ==UserScript==
// @name         挂海去广告
// @namespace    https://www.52ghai.com/
// @version      0.1
// @description挂海去广告
// @AuThor       ciker
// @match      https://www.52ghai.com/*
// @Icon         https://www.google.com/s2/favicons?sz=64&domain=runoob.com
// @grant      GM_addStyle
// @grant      unsafeWindow

// ==/UserScript==

let weburl=unsafeWindow.location.href
    if(weburl.indexOf('www.52ghai.com')!=-1)
    {      
      GM_addStyle('#yttl_x_g{display:none !important}')
      GM_addStyle('#sc-superman-ad{display:none !important}')
      document.getElementsByClassName("wp yttl_x_g").style.display="none"      
    }

chinasugar 发表于 2022-3-22 22:15

油猴脚本很好用,一直在使用。

gentry2008 发表于 2022-3-22 23:05

脚本很好,学习一下

雾都孤尔 发表于 2022-3-22 23:17

脚本用着很不错,感谢分享。

白胡子老头 发表于 2022-3-23 09:44

我自己写的小K网去广告
// ==UserScript==
// @name         小K网去广告
// @namespace    http://tampermonkey.net/
// @version      0.1
// @descriptiontry to take over the world!
// @AuThor       You
// @match      https://xkwo.com/
// @Icon         https://www.google.com/s2/favicons?sz=64&domain=xkwo.com
// @grant      none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    document.getElementById('advertisingMap').remove();
    document.getElementsByClassName('adv-banner').remove();
    document.getElementsByClassName('news-rank-imgs').remove();
    document.getElementsByClassName('activity').remove();
    document.getElementsByClassName('recommended').remove();
    var newsads = document.getElementsByClassName('news-list-adv');
    var newsArr = [];
    for (var i=0;i<newsads.length;i++){
      newsArr.push(newsads)
    }
    for(var j=0;j<newsArr.length;j++){
      newsArr.parentNode.parentNode.remove()
    }


})();
页: [1]
查看完整版本: 挂海论坛去广告油猴脚本