Skip to content

Commit 26035fa

Browse files
committed
feat(kill-watermark): 适配爱奇艺国际版 (#43)
1 parent aab8d11 commit 26035fa

5 files changed

Lines changed: 30 additions & 1 deletion

File tree

.changeset/tricky-teachers-care.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'kill-watermark': minor
3+
---
4+
5+
适配爱奇艺国际版 [#43](https://github.com/maomao1996/tampermonkey-scripts/issues/43)

packages/kill-watermark/metablock.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"name:en": "Kill Watermark",
66
"namespace": "maomao1996.kill-watermark",
77
"version": "0.0.2",
8-
"description": "杀死水印(移除烦人的水印,还你一个干净清爽的页面);已适配360 智脑、腾讯文档、飞书、FreeBuf 网络安全行业门户、爱奇艺播放页(右上角 logo、暂停时的广告)、金山文档、腾讯课堂播放页漂浮水印、哔哩哔哩直播(左上角 logo、马赛克模块)、CSDN C 知道、腾讯视频播放页(右上角 logo、暂停时的弹窗广告)、优酷视频播放页(右上角 logo、暂停时的弹窗广告)、语雀",
8+
"description": "杀死水印(移除烦人的水印,还你一个干净清爽的页面);已适配360 智脑、腾讯文档、飞书、FreeBuf 网络安全行业门户、爱奇艺国际版播放页右上角 logo、爱奇艺播放页(右上角 logo、暂停时的广告)、金山文档、腾讯课堂播放页漂浮水印、哔哩哔哩直播(左上角 logo、马赛克模块)、CSDN C 知道、腾讯视频播放页(右上角 logo、暂停时的弹窗广告)、优酷视频播放页(右上角 logo、暂停时的弹窗广告)、语雀",
99
"author": "",
1010
"homepage": "",
1111
"supportURL": "",
@@ -15,6 +15,7 @@
1515
"match": [
1616
"*://v.qq.com/x/cover/*",
1717
"*://*.iqiyi.com/*",
18+
"*://*.iq.com/*",
1819
"*://v.youku.com/*",
1920
"*://live.bilibili.com/*",
2021
"*://ke.qq.com/course/*",

packages/kill-watermark/src/sites/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ export { default as chat360Com } from './chat.360.com'
22
export { default as docsQqCom } from './docs.qq.com'
33
export { default as feishuCn } from './feishu.cn'
44
export { default as freebufCom } from './freebuf.com'
5+
export { default as iqCom } from './iq.com'
56
export { default as iqiyiCom } from './iqiyi.com'
67
export { default as kdocsCn } from './kdocs.cn'
78
export { default as keQqCom } from './ke.qq.com'
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/* 播放页右上角 logo */
2+
.iqp-logo-box,
3+
.iqp-logo-top,
4+
.iqp-logo-bottom {
5+
display: none !important;
6+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/*
2+
* 爱奇艺国际版
3+
* - https://www.iq.com
4+
******************************************************************************/
5+
6+
import style from './index.css'
7+
8+
const site: SiteModule = [
9+
'爱奇艺国际版播放页右上角 logo',
10+
'iq.com',
11+
{
12+
style,
13+
},
14+
]
15+
16+
export default site

0 commit comments

Comments
 (0)