forked from ddgksf2013/Scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathv2ex.js
More file actions
40 lines (30 loc) · 971 Bytes
/
v2ex.js
File metadata and controls
40 lines (30 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/***********************************
> 网站名称:墨鱼自用V2EX网页去广告
> 脚本功能:网站净化|去广告
> 脚本作者:ddgksf2013
> 微信账号:墨鱼手记
> 更新时间:2024-01-05
> 通知频道:https://t.me/ddgksf2021
> 贡献投稿:https://t.me/ddgksf2013_bot
> 问题反馈:ddgksf2013@163.com
> 特别提醒:如需转载请注明出处,谢谢合作!
> 特别说明:⚠️⚠️⚠️
本脚本仅供学习交流使用,禁止转载、售卖
⚠️⚠️⚠️
[rewrite_local]
^https?:\/\/.*v2ex\.com\/($|t\/\d+) url script-response-body https://github.com/ddgksf2013/Scripts/raw/master/v2ex.js
[mitm]
hostname = *.v2ex.com
***********************************/
var body = $response.body.replace(
/<head>/,
`<head>
<style>
.sidebar_units,
.sidebar_compliance,
div[class^="wwads-"]{
display: none !important;
}
</style>`
);
$done({ body });