csdn博客去广告

try to take over the world!

目前為 2020-11-27 提交的版本,檢視 最新版本

// ==UserScript==
// @name         csdn博客去广告
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  try to take over the world!
// @author       tang1jun
// @match        https://blog.csdn.net/*
// @grant        none
// ==/UserScript==

(function() {
	'use strict';

	function delad() {
		var ad = document.getElementsByClassName('programmer1Box');
		console.info('lyj 去广告',ad)
		ad[0].remove()
	}
	// 执行去广告
    delad();


})();