From fdade110dcfbd502127e22f61516ceb906d45fc6 Mon Sep 17 00:00:00 2001 From: walklty <47232102+walklty@users.noreply.github.com> Date: Sun, 24 Dec 2023 20:14:03 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E7=BA=A2=E6=9D=BF=E6=8A=A5):=20=E5=BC=80?= =?UTF-8?q?=E5=B1=8F=E5=B9=BF=E5=91=8A=20(#3261)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit close #3244 --- src/apps/flipboard.cn.ts | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/apps/flipboard.cn.ts diff --git a/src/apps/flipboard.cn.ts b/src/apps/flipboard.cn.ts new file mode 100644 index 00000000..311ea3e3 --- /dev/null +++ b/src/apps/flipboard.cn.ts @@ -0,0 +1,22 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'flipboard.cn', + name: '红板报', + groups: [ + { + key: 0, + name: '开屏广告', + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + quickFind: true, + rules: [ + { + matches: '[id="flipboard.cn:id/splash_text_layout"]', + snapshotUrls: 'https://i.gkd.li/import/13694601', + }, + ], + }, + ], +});