mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-18 07:45:10 +08:00
16 lines
379 B
TypeScript
16 lines
379 B
TypeScript
import type { AppConfig } from '../types';
|
|
|
|
export default <AppConfig>{
|
|
id: 'com.google.android.youtube',
|
|
name: `youtube`,
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '视频播放-跳过广告',
|
|
activityIds:
|
|
'com.google.android.apps.youtube.app.watchwhile.WatchWhileActivity',
|
|
rules: '[id=`com.google.android.youtube:id/skip_ad_button`]',
|
|
},
|
|
],
|
|
};
|