mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 16:54:43 +08:00
90 lines
2.9 KiB
TypeScript
90 lines
2.9 KiB
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.aster.zhbj',
|
|
name: '喵上漫画',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '开屏广告',
|
|
desc: '点击右上角跳过',
|
|
matchLauncher: true,
|
|
rules: [
|
|
{
|
|
activityIds: [
|
|
'com.aster.comic.app.ad.view.mediation.MediationSplashAdActivity',
|
|
'com.aster.comic.app.ad.view.mediation.MediationAppResumeSplashAdActivity',
|
|
'com.aster.comic.app.view.reader.ReaderActivity',
|
|
],
|
|
matches: '[id="com.byted.pangle.m:id/tt_splash_skip_btn"]',
|
|
snapshotUrls: [
|
|
'https://gkd-kit.gitee.io/import/12981243',
|
|
'https://gkd-kit.gitee.io/import/13029855',
|
|
'https://gkd-kit.gitee.io/import/13043320',
|
|
'https://gkd-kit.gitee.io/import/13043344',
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 1,
|
|
name: '应用内广告弹窗',
|
|
desc: '点击右上角x',
|
|
rules: [
|
|
// 腾讯广告
|
|
{
|
|
key: 0,
|
|
activityIds: 'com.bbk.launcher2.Launcher',
|
|
matches: 'ImageView - FrameLayout > FrameLayout > ImageView',
|
|
snapshotUrls: 'https://i.gkd.li/import/12777325',
|
|
},
|
|
{
|
|
key: 1,
|
|
activityIds:
|
|
'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Activity_T',
|
|
matches:
|
|
'FrameLayout[childCount=5] > FrameLayout[childCount=1] > ImageView',
|
|
snapshotUrls: 'https://gkd-kit.gitee.io/import/13029880',
|
|
},
|
|
{
|
|
key: 2,
|
|
activityIds: 'com.aster.comic.app.view.MainActivity',
|
|
matches:
|
|
'ImageView - LinearLayout - FrameLayout > FrameLayout > ImageView',
|
|
snapshotUrls: 'https://gkd-kit.gitee.io/import/12872249',
|
|
},
|
|
// 字节广告
|
|
{
|
|
key: 3,
|
|
activityIds: 'com.aster.comic.app.view.MainActivity',
|
|
matches: '[desc^="webview-close"] > View',
|
|
snapshotUrls: 'https://i.gkd.li/import/12903062',
|
|
},
|
|
{
|
|
key: 4,
|
|
activityIds: [
|
|
'com.aster.comic.app.view.MainActivity',
|
|
'ImageView - FrameLayout > FrameLayout > ImageView',
|
|
],
|
|
matches: 'ImageView - FrameLayout > FrameLayout > ImageView',
|
|
snapshotUrls: [
|
|
'https://gkd-kit.gitee.io/import/12984767',
|
|
'https://gkd-kit.gitee.io/import/12998908',
|
|
],
|
|
},
|
|
{
|
|
key: 11,
|
|
activityIds:
|
|
'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',
|
|
matches:
|
|
'@Image[text=""] < View + View +n View > View > TextView[text="广告"]',
|
|
snapshotUrls: [
|
|
'https://gkd-kit.gitee.io/import/12996953',
|
|
'https://gkd-kit.gitee.io/import/13003644',
|
|
],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|