mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-21 01:04:53 +08:00
22 lines
552 B
TypeScript
22 lines
552 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.android.vending',
|
|
name: 'Google Play 商店',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '功能类-谷歌发送应用安全检查',
|
|
desc: '点击不发送',
|
|
rules: [
|
|
{
|
|
activityIds:
|
|
'com.google.android.finsky.protectdialogs.activity.PlayProtectDialogsActivity',
|
|
matches: '@View[clickable=true] > [text="不发送"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/14035144',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|