mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-24 02:35:25 +08:00
* feat(中国广电): 跳过开屏广告 (cherry picked from commit 372826b2e8caac74f47b4fe7da1fc3c1ca965c73) * fix(中国广电): 跳过开屏广告-无需界面ID (cherry picked from commit 0a1375ca32d523d8aa9f2a42fadc8b432d60255b) * fix(中国广电): 增加规则准确性 --------- Co-authored-by: dlh <du__th@163.com> Co-authored-by: lisonge <i@songe.li>
21 lines
500 B
TypeScript
21 lines
500 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.ai.obc.cbn.app',
|
|
name: '中国广电',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '开屏广告',
|
|
activityIds: ['com.ai.obc.cbn.app.ui.other.activity.SplashActivity'],
|
|
rules: [
|
|
{
|
|
matches: '[id="com.ai.obc.cbn.app:id/tvTg"]',
|
|
snapshotUrls:
|
|
'https://gkd-kit.gitee.io/import/22029832/3d58f8d5-bb6a-464a-88f7-5a27c5e0854c',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|