mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-21 01:04:53 +08:00
38 lines
1.0 KiB
TypeScript
38 lines
1.0 KiB
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.wondertek.paper',
|
|
name: '澎湃新闻',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '开屏广告',
|
|
activityIds: ['cn.thepaper.paper.ui.splash.welcome.LaunchActivity'],
|
|
matchLauncher: true,
|
|
rules: [
|
|
{
|
|
matches:
|
|
'[id="com.wondertek.paper:id/count_down" || id="com.wondertek.paper:id/count_miss"]',
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/import/12644536',
|
|
'https://i.gkd.li/import/12645559',
|
|
'https://i.gkd.li/import/13064620', //matchLauncher
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 2,
|
|
name: '应用内弹窗',
|
|
activityIds: ['cn.thepaper.paper.ui.main.MainActivity'],
|
|
rules: [
|
|
{
|
|
matches:
|
|
'[id="com.wondertek.paper:id/second_num"] <2 [id="com.wondertek.paper:id/relative_layout"] + [id="com.wondertek.paper:id/close_photo"]',
|
|
snapshotUrls: ['https://i.gkd.li/import/12899226'],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|