mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-23 02:05:06 +08:00
37 lines
898 B
TypeScript
37 lines
898 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.youdao.note',
|
|
name: '有道云笔记',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '开屏广告',
|
|
quickFind: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: '[text^="跳过"][text.length<=10]',
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/import/12745606',
|
|
'https://i.gkd.li/import/13399002',
|
|
],
|
|
},
|
|
{
|
|
key: 1,
|
|
name: '卡片式广告',
|
|
rules: [
|
|
{
|
|
key: 1,
|
|
name: '首页上方卡片广告',
|
|
activityIds: 'com.youdao.note.activity2.MainActivity',
|
|
quickFind: true,
|
|
matches:
|
|
'[id="com.youdao.note:id/recycle_view"] + [id="com.youdao.note:id/close_ad"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13379524',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|