mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 16:54:43 +08:00
33 lines
947 B
TypeScript
33 lines
947 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.google.android.apps.googlevoice',
|
|
name: 'Voice',
|
|
groups: [
|
|
{
|
|
key: 10,
|
|
name: '功能类-跳过实体号码链接',
|
|
quickFind: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
activityIds: [
|
|
'com.google.android.apps.voice.promo.PromoActivity',
|
|
'com.google.android.apps.voice.verification.procedure.VerificationActivity',
|
|
],
|
|
rules: [
|
|
{
|
|
matches: [
|
|
'[id="com.google.android.apps.googlevoice:id/title_view"][text="Link this device to Google Voice" || text="将此设备与 Google Voice 关联"]',
|
|
'[id="com.google.android.apps.googlevoice:id/skip_button"]',
|
|
],
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/i/13314255',
|
|
'https://i.gkd.li/i/13437190',
|
|
],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|