mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-21 01:04:53 +08:00
* feat(讯飞输入法): 开屏广告 * feat(讯飞输入法): 开屏广告-规则优化 --------- Co-authored-by: 二刺螈 <i@songe.li> close #1166
24 lines
596 B
TypeScript
24 lines
596 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.iflytek.inputmethod',
|
|
name: '讯飞输入法',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '开屏广告',
|
|
desc: '点击右上方跳过按钮',
|
|
matchLauncher: true,
|
|
quickFind: true,
|
|
activityIds:
|
|
'com.iflytek.inputmethod.settingsnew.splash.activity.NewSplashActivity',
|
|
rules: [
|
|
{
|
|
matches: '[id="com.iflytek.inputmethod.settingsnew:id/ll_skip"]',
|
|
snapshotUrls: 'https://gkd-kit.gitee.io/import/12906597',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|