飞极速优化

飞极速去广告

当前为 2022-05-08 提交的版本,查看 最新版本

// ==UserScript==
// @name         飞极速优化
// @namespace    Pudon
// @include      *://*feijisu*/*
// @include      *://*fjisu*/*
// @version      0.0.1
// @grant        none
// @license      MIT
// @description  飞极速去广告
// ==/UserScript==

(function() {
  document.addEventListener('DOMNodeInserted', e => {
    var _el = e.target
    var _adList = ['HMRichBox', 'HMcoupletDivright', 'HMcoupletDivleft']
    // 清除广告
    if (_adList.indexOf(_el.id) > -1) {
      _el.remove()
    }
  }, false)
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址