mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-21 01:04:53 +08:00
29 lines
699 B
TypeScript
29 lines
699 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.daimajia.gold',
|
|
name: '稀土掘金',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '开屏广告',
|
|
quickFind: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: '[id=`com.daimajia.gold:id/fl_skip`]',
|
|
},
|
|
{
|
|
key: 1,
|
|
name: '版本更新',
|
|
quickFind: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules:
|
|
'@[id="com.daimajia.gold:id/iv_close"] -n LinearLayout [id="com.daimajia.gold:id/tv_title"][text="发现新版本"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13498703',
|
|
},
|
|
],
|
|
});
|