mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 16:54:43 +08:00
* feat(bilibili): 打开推送通知弹窗 * chore(actions): check_format_lint --------- Co-authored-by: adproqwq <2757917031@qq.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
46 lines
1.3 KiB
TypeScript
46 lines
1.3 KiB
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.bilibili.app.in',
|
|
name: 'bilibili',
|
|
groups: [
|
|
{
|
|
key: 5,
|
|
name: '评论区-满意度评价',
|
|
quickFind: true,
|
|
activityIds: 'com.bilibili.video.story.StoryVideoActivity',
|
|
rules:
|
|
'[text="对当前的评论区满意吗?"] + [id="com.bilibili.app.in:id/close"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13115189',
|
|
},
|
|
{
|
|
key: 6,
|
|
name: 'APP评分',
|
|
quickFind: true,
|
|
activityIds: 'tv.danmaku.bili.MainActivityV2',
|
|
rules: '[id="com.bilibili.app.in:id/cancel"][text="下次再说"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13180746',
|
|
},
|
|
{
|
|
key: 7,
|
|
name: '订阅感兴趣的通知',
|
|
desc: '点击【暂不开启】',
|
|
quickFind: true,
|
|
matchLauncher: true,
|
|
rules: '[text="订阅感兴趣的通知"] +2 LinearLayout [text="暂不开启"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13399195',
|
|
},
|
|
{
|
|
key: 8,
|
|
name: '打开推送通知弹窗',
|
|
desc: '自动点击“暂不”',
|
|
quickFind: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
rules:
|
|
'[text="打开推送通知"] +2 LinearLayout > [id="com.bilibili.app.in:id/close"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13600976',
|
|
},
|
|
],
|
|
});
|