From 8577eb9f3a01129c625e0b8b9f12f178fa6c0f44 Mon Sep 17 00:00:00 2001 From: lisonge Date: Sun, 3 Sep 2023 11:46:55 +0800 Subject: [PATCH] chore: sync --- README.md | 8 +++++++- dist/gkd.json | 18 +++++++++++++++++- package.json | 2 +- src/apps/com.douban.frodo.ts | 18 ++++++++++++++++++ 4 files changed, 43 insertions(+), 3 deletions(-) create mode 100644 src/apps/com.douban.frodo.ts diff --git a/README.md b/README.md index bcde20db..d35de07a 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ 搞快点 APP 默认订阅规则 -当前订阅文件已适配 80 个 APP, 共有 135 规则组 +当前订阅文件已适配 81 个 APP, 共有 136 规则组 ## 适配 APP 列表 @@ -139,6 +139,12 @@ - 开屏广告 +### [com.douban.frodo](/src/apps/com.douban.frodo.ts) - 豆瓣 + +- 开屏广告 + - [快照-0](https://gkd-kit.gitee.io/import/12505151) + - [快照-1](https://gkd-kit.gitee.io/import/12505152) + ### [com.dragon.read](/src/apps/com.dragon.read.ts) - 番茄免费小说 - 阅读页面底部广告 diff --git a/dist/gkd.json b/dist/gkd.json index 736ae69c..12afc760 100644 --- a/dist/gkd.json +++ b/dist/gkd.json @@ -1,7 +1,7 @@ { "id": 0, "name": "默认订阅", - "version": 43, + "version": 44, "author": "lisonge", "supportUri": "https://github.com/gkd-kit/subscription", "apps": [ @@ -533,6 +533,22 @@ } ] }, + { + "id": "com.douban.frodo", + "name": "豆瓣", + "groups": [ + { + "key": 0, + "name": "开屏广告", + "activityIds": "com.douban.frodo.activity.SplashActivity", + "rules": "[id=\"com.douban.frodo:id/skip\"||text^=\"跳过\"]", + "snapshotUrls": [ + "https://gkd-kit.gitee.io/import/12505151", + "https://gkd-kit.gitee.io/import/12505152" + ] + } + ] + }, { "id": "com.dragon.read", "name": "番茄免费小说", diff --git a/package.json b/package.json index d005c30b..6dc3360c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@gkd-kit/subscription", "type": "module", - "version": "0.0.43", + "version": "0.0.44", "main": "./dist/gkd.json", "unpkg": "./dist/gkd.json", "jsdelivr": "./dist/gkd.json", diff --git a/src/apps/com.douban.frodo.ts b/src/apps/com.douban.frodo.ts new file mode 100644 index 00000000..1b0e6f29 --- /dev/null +++ b/src/apps/com.douban.frodo.ts @@ -0,0 +1,18 @@ +import type { AppConfig } from '../types'; + +export default { + id: 'com.douban.frodo', + name: '豆瓣', + groups: [ + { + key: 0, + name: '开屏广告', + activityIds: 'com.douban.frodo.activity.SplashActivity', + rules: '[id="com.douban.frodo:id/skip"||text^="跳过"]', + snapshotUrls: [ + 'https://gkd-kit.gitee.io/import/12505151', + 'https://gkd-kit.gitee.io/import/12505152', + ], + }, + ], +};