Skip to content

Instantly share code, notes, and snippets.

@iwengx
Created April 7, 2024 07:54
Show Gist options
  • Save iwengx/fd59a14b7ce4f260c2276515497b39ed to your computer and use it in GitHub Desktop.
Save iwengx/fd59a14b7ce4f260c2276515497b39ed to your computer and use it in GitHub Desktop.
【油猴脚本】去除V2EX页面中的多余广告和元素。
// ==UserScript==
// @name v2ex 广告净化
// @namespace http://tampermonkey.net/
// @version 2024-04-07
// @description 去除站内广告内容
// @author iWengX
// @match *://v2ex.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=v2ex.com
// @grant GM_addStyle
// ==/UserScript==
(function() {
/** 清除样式 */
const purge_css = `
div[style="border-bottom: 1px solid var(--box-border-color);"],
.wwads-cn
{
display: none !important;
}
`
/** 设置清除样式 */
GM_addStyle(purge_css);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment