mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-23 02:05:06 +08:00
49 lines
1.2 KiB
TypeScript
49 lines
1.2 KiB
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.magicalstory.AppStore',
|
|
name: '奇妙应用',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '开屏广告',
|
|
quickFind: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: [
|
|
{
|
|
matches: '[text="跳过"]',
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/import/13185745',
|
|
'https://i.gkd.li/import/13191546',
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 1,
|
|
name: '卡片式广告',
|
|
rules: [
|
|
{
|
|
key: 0,
|
|
name: '腾讯广告',
|
|
activityIds: [
|
|
'com.magicalstory.AppStore.search.searchActivity',
|
|
'com.magicalstory.AppStore.appDetails.AppDetailsActivity',
|
|
],
|
|
matches: [
|
|
'[id^="com.magicalstory.AppStore:id/banner"]',
|
|
'FrameLayout[childCount=5] > FrameLayout[childCount=1] > ImageView',
|
|
],
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/import/13185746',
|
|
'https://i.gkd.li/import/13413482',
|
|
'https://i.gkd.li/import/13416979',
|
|
],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|