【代码】职友集去除弹窗广告

前言

职友集去除弹窗广告

源代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// ==UserScript==
// @name 职友集去除弹窗广告
// @namespace http://tampermonkey.net/
// @version 1.0
// @description 职友集去除付费弹窗广告
// @author FeiJu
// @match https://www.jobui.com/**
// @icon https://www.google.com/s2/favicons?sz=64&domain=jobui.com
// @grant none
// ==/UserScript==

(function() {
'use strict';
document.body.removeChild(document.getElementById("ui-v2-pop"));
})();

完成