mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-21 01:04:53 +08:00
* 初步导入了每日赛车的规则 * 更新了一些软件的规则 * chore(actions): permissions * chore(actions): permissions-write-all * chore(format): change LF to CRLF * chore: revise after review * chore: 规则优化 --------- Co-authored-by: Long Miao <longmiaohez@163.com> Co-authored-by: lisonge <i@songe.li>
32 lines
891 B
TypeScript
32 lines
891 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.romielf.mrsc',
|
|
name: '每日赛车',
|
|
groups: [
|
|
{
|
|
name: '开屏广告',
|
|
key: 0,
|
|
rules: '[id="com.byted.pangle:id/tt_splash_skip_btn"]',
|
|
snapshotUrls: 'https://gkd-kit.gitee.io/import/12667534',
|
|
},
|
|
{
|
|
name: '新闻页面摇一摇广告',
|
|
key: 1,
|
|
enable: false,
|
|
activityIds: 'com.romielf.mrsc.MainActivity',
|
|
desc: '点击准确率灵敏度不太高',
|
|
rules: [
|
|
{
|
|
matches: '@Image < View -n View >2 View[text="广告"]',
|
|
snapshotUrls: 'https://gkd-kit.gitee.io/import/12667539',
|
|
},
|
|
{
|
|
matches: '[id="com.byted.pangle:id/tt_item_tv"][text="不感兴趣"]', // 字节SDK广告
|
|
snapshotUrls: 'https://gkd-kit.gitee.io/import/12667549',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|