mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 00:35:17 +08:00
* fix(乐看视频): 广告弹窗补充规则 * chore(actions): check_format_lint * feat(乐看视频): 广告弹窗 --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: lisonge <i@songe.li>
24 lines
636 B
TypeScript
24 lines
636 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.zhl.bmi',
|
|
name: '乐看视频',
|
|
groups: [
|
|
{
|
|
key: 2,
|
|
name: '广告弹窗',
|
|
desc: '点击右上角x',
|
|
activityIds: 'com.zhl.bmi.MainActivity',
|
|
quickFind: true,
|
|
rules: [
|
|
'@ImageView < FrameLayout[childCount=1] <(2,3) FrameLayout <(1,2) FrameLayout < FrameLayout < [id="android:id/content"]',
|
|
],
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/import/13255787',
|
|
'https://i.gkd.li/import/13255786',
|
|
'https://i.gkd.li/import/13542343', //第二条规则
|
|
],
|
|
},
|
|
],
|
|
});
|