mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-21 17:25:11 +08:00
commit 33c2c4e4d2de1b5d1c541cf685d8c6dc3ef82a95 Author: aisouler <zy43220@gmail.com> Date: Fri Jan 26 16:32:44 2024 +0800 feat:移除quickfind commit 684fdb570257c05677eb2c5742e58affc00181b5 Author: aisouler <zy43220@gmail.com> Date: Wed Jan 24 16:26:27 2024 +0800 feat(Google Play 商店):功能类-谷歌发送应用安全检查(点击不发送)
22 lines
557 B
TypeScript
22 lines
557 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/import/14035144',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|