mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-22 17:55:12 +08:00
23 lines
505 B
TypeScript
23 lines
505 B
TypeScript
import { defineGkdApp } from '@gkd-kit/define';
|
|
|
|
export default defineGkdApp({
|
|
id: 'org.readera',
|
|
name: 'ReadEra',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '评价提示-分享提示',
|
|
desc: '点击右上角的x',
|
|
rules: [
|
|
{
|
|
fastQuery: true,
|
|
activityIds: '.MainActivity',
|
|
action: 'back',
|
|
matches: '[text*="通过社交网络分享这款应用"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/22950138',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|