chore: sync

This commit is contained in:
lisonge
2023-08-28 20:12:23 +08:00
parent caeb5fdb54
commit 8df088b60a
5 changed files with 53 additions and 2 deletions

24
dist/gkd.json vendored
View File

@@ -1,7 +1,7 @@
{
"id": 0,
"name": "默认订阅",
"version": 21,
"version": 22,
"author": "lisonge",
"supportUrl": "https://github.com/gkd-kit/subscription",
"apps": [
@@ -41,6 +41,17 @@
}
]
},
{
"id": "cn.damai",
"groups": [
{
"key": 0,
"name": "大麦-开屏广告",
"activityIds": "cn.damai.launcher.splash.SplashMainActivity",
"rules": "[id=\"cn.damai:id/homepage_advert_pb\"]"
}
]
},
{
"id": "cn.wps.moffice_eng",
"groups": [
@@ -1009,6 +1020,17 @@
}
]
},
{
"id": "com.ximalaya.ting.android",
"groups": [
{
"key": 0,
"name": "喜马拉雅-右侧浮动广告",
"activityIds": "com.ximalaya.ting.android.host.activity.MainActivity",
"rules": "[id=\"com.ximalaya.ting.android:id/main_ad_broadside_close_real\"]"
}
]
},
{
"id": "com.ximalaya.ting.lite",
"groups": [

View File

@@ -1,7 +1,7 @@
{
"name": "@gkd-kit/subscription",
"type": "module",
"version": "0.0.21",
"version": "0.0.22",
"main": "./dist/gkd.json",
"unpkg": "./dist/gkd.json",
"jsdelivr": "./dist/gkd.json",

14
src/apps/cn.damai.ts Normal file
View File

@@ -0,0 +1,14 @@
import type { AppConfig } from '../types';
export default <AppConfig>{
id: 'cn.damai',
groups: [
{
key: 0,
name: `大麦-开屏广告`,
activityIds: `cn.damai.launcher.splash.SplashMainActivity`,
// https://gkd-kit.gitee.io/import/38517192/38859663-6f0c-48b1-9392-20ae937a8c9e
rules: `[id="cn.damai:id/homepage_advert_pb"]`,
},
],
};

View File

@@ -7,6 +7,7 @@ export default <AppConfig>{
key: 0,
name: '美图秀秀-开屏广告',
activityIds: 'com.meitu.business.ads.core.activity.AdActivity',
// https://gkd-kit.gitee.io/import/38517192/1f56aa17-c290-4e56-b6fb-a94bc778448b
rules: '[text=`跳过广告`]',
},
],

View File

@@ -0,0 +1,14 @@
import type { AppConfig } from '../types';
export default <AppConfig>{
id: 'com.ximalaya.ting.android',
groups: [
{
key: 0,
name: `喜马拉雅-右侧浮动广告`,
activityIds: `com.ximalaya.ting.android.host.activity.MainActivity`,
// https://gkd-kit.gitee.io/import/38517192/45664dfb-b8e6-4bdb-b5bb-9852c7a86a2f
rules: `[id="com.ximalaya.ting.android:id/main_ad_broadside_close_real"]`,
},
],
};