From 72bec37930f2309074867955e235412aa2f23f9d Mon Sep 17 00:00:00 2001 From: Lynn <352281674@qq.com> Date: Wed, 1 Nov 2023 00:46:47 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E8=B0=B7=E6=AD=8C=E7=9B=B8=E5=86=8C):=20?= =?UTF-8?q?=E8=B0=B7=E6=AD=8C=E7=9B=B8=E5=86=8C=E5=8F=96=E6=B6=88=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=20(#1668)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat(谷歌相册): 谷歌相册取消更新 * feat(谷歌相册): 取消更新 --------- Co-authored-by: 二刺螈 --- src/apps/com.google.android.apps.photos.ts | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/apps/com.google.android.apps.photos.ts diff --git a/src/apps/com.google.android.apps.photos.ts b/src/apps/com.google.android.apps.photos.ts new file mode 100644 index 000000000..6d4637b3c --- /dev/null +++ b/src/apps/com.google.android.apps.photos.ts @@ -0,0 +1,24 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.google.android.apps.photos', + name: '谷歌相册', + groups: [ + { + key: 0, + name: '取消更新', + desc: '点击[以后再说]', + activityIds: [ + 'com.google.android.apps.photos.update.treatment.UpdateAppTreatmentPromoPageActivity', + ], + quickFind: true, + rules: [ + { + matches: + '[id=`com.google.android.apps.photos:id/negative_button`][text=`以后再说`]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/13218940', + }, + ], + }, + ], +});