mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-23 02:05:06 +08:00
47 lines
1.4 KiB
TypeScript
47 lines
1.4 KiB
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.bbk.appstore',
|
|
name: 'vivo应用商店',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '开屏广告',
|
|
quickFind: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: '[text^="跳过"][text.length<=10]',
|
|
snapshotUrls: 'https://i.gkd.li/import/12847395',
|
|
},
|
|
{
|
|
key: 1,
|
|
name: '请求消息通知',
|
|
quickFind: true,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
activityIds: [
|
|
'com.bbk.appstore.upgrade.UpgradeNecessaryActivity',
|
|
'com.bbk.appstore.ui.AppStoreTabActivity',
|
|
],
|
|
rules: [
|
|
{
|
|
activityIds: 'com.bbk.appstore.upgrade.UpgradeNecessaryActivity',
|
|
matches: '[id="com.bbk.appstore:id/upgrade_necessary_btn_high_new"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13198101',
|
|
},
|
|
{
|
|
activityIds: 'com.bbk.appstore.ui.AppStoreTabActivity',
|
|
matches: '[id="com.bbk.appstore:id/common_dialog_netgtive_btn"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13198234',
|
|
},
|
|
{
|
|
activityIds: 'com.bbk.appstore.ui.AppStoreTabActivity',
|
|
matches: '[id="com.bbk.appstore:id/quit_button"][text="取消"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13246971',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|