mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-22 01:35:32 +08:00
64 lines
1.6 KiB
TypeScript
64 lines
1.6 KiB
TypeScript
import { defineGkdApp } from '@gkd-kit/define';
|
|
|
|
export default defineGkdApp({
|
|
id: 'com.bilibili.app.in',
|
|
name: 'bilibili',
|
|
groups: [
|
|
{
|
|
key: 5,
|
|
name: '评价提示-评论区满意度评价',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
fastQuery: true,
|
|
activityIds: 'com.bilibili.video.story.StoryVideoActivity',
|
|
rules:
|
|
'[text="对当前的评论区满意吗?"] + [id="com.bilibili.app.in:id/close"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/13115189',
|
|
},
|
|
{
|
|
key: 6,
|
|
name: '评价提示-APP评分',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
fastQuery: true,
|
|
rules: '[id="com.bilibili.app.in:id/cancel"][text="下次再说"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/13180746',
|
|
},
|
|
{
|
|
key: 7,
|
|
name: '通知提示-订阅感兴趣的通知',
|
|
desc: '点击"暂不开启"',
|
|
fastQuery: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: [
|
|
{
|
|
matches: ['[text="订阅感兴趣的通知"]', '[text="暂不开启"]'],
|
|
snapshotUrls: 'https://i.gkd.li/i/13399195',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 8,
|
|
name: '权限提示-通知权限',
|
|
desc: '自动点击"暂不"',
|
|
fastQuery: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: [
|
|
{
|
|
matches: ['[text="打开推送通知"]', '[text="暂不"]'],
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/i/13600976',
|
|
'https://i.gkd.li/i/15907493',
|
|
],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|