From 83c8277966057d12f59d7add163c56336d87066f Mon Sep 17 00:00:00 2001 From: AIsouler Date: Mon, 4 Mar 2024 13:02:19 +0800 Subject: [PATCH] =?UTF-8?q?feat(SecurityAnalysis):=20=E5=B1=80=E9=83=A8?= =?UTF-8?q?=E5=B9=BF=E5=91=8A-=E5=AE=89=E5=85=A8=E7=9B=91=E6=B5=8B?= =?UTF-8?q?=E9=80=9A=E8=BF=87=E5=90=8E=E7=9A=84=E5=B9=BF=E5=91=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/com.realme.securitycheck.ts | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/apps/com.realme.securitycheck.ts diff --git a/src/apps/com.realme.securitycheck.ts b/src/apps/com.realme.securitycheck.ts new file mode 100644 index 00000000..4f825fcb --- /dev/null +++ b/src/apps/com.realme.securitycheck.ts @@ -0,0 +1,23 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.realme.securitycheck', + name: 'SecurityAnalysis', + groups: [ + { + key: 1, + name: '局部广告-安全监测通过后的广告', + desc: '点击关闭', + rules: [ + { + quickFind: true, + activityIds: 'com.realme.securitycheck.SecurityCheckActivity', + matches: '[vid="ad_contain"] >5 [vid="close"][clickable=true]', + exampleUrls: + 'https://m.gkd.li/57941037/c4a9acc9-3108-4364-8586-906b200e1171', + snapshotUrls: 'https://i.gkd.li/i/14476628', + }, + ], + }, + ], +});