mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 00:35:17 +08:00
* feat(酷狗概念版):开屏广告 * chore(actions): check_format_lint * Update com.kugou.android.lite.ts --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> close #2012 close #1993
32 lines
724 B
TypeScript
32 lines
724 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.kugou.android.lite',
|
|
name: '酷狗概念版',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '开屏广告',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: [
|
|
{
|
|
key: 0,
|
|
quickFind: true,
|
|
matches: '[text*="跳过"][text.length<=10]',
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/import/13324363',
|
|
'https://i.gkd.li/import/13318737',
|
|
],
|
|
},
|
|
{
|
|
key: 1,
|
|
matches: '[desc*="跳过" && desc.length<=10]',
|
|
snapshotUrls: 'https://i.gkd.li/import/12919282',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|