mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 00:35:17 +08:00
* feat(飞客):开屏广告、广告弹窗 * chore(actions): check_format_lint --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> close #2535
32 lines
827 B
TypeScript
32 lines
827 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.ideal.flyerteacafes',
|
|
name: '飞客',
|
|
deprecatedKeys: [7],
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '开屏广告',
|
|
quickFind: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: '[text*="跳过"][text.length<=10]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13466120',
|
|
},
|
|
{
|
|
key: 3,
|
|
name: '广告弹窗',
|
|
quickFind: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
activityIds: 'com.ideal.flyerteacafes.ui.HomeActivity',
|
|
rules:
|
|
'@[id="com.ideal.flyerteacafes:id/close"] - FrameLayout > [id="com.ideal.flyerteacafes:id/tv_time_down"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13466119',
|
|
},
|
|
],
|
|
});
|