mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-23 02:05:06 +08:00
15 lines
357 B
TypeScript
15 lines
357 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.sankuai.meituan',
|
|
name: `美团`,
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '开屏广告',
|
|
activityIds: 'com.meituan.android.pt.homepage.activity.MainActivity',
|
|
rules: 'TextView[id=`com.sankuai.meituan:id/close_btn`][text^=`跳过`]',
|
|
},
|
|
],
|
|
});
|