feat: 规则分类+全局规则组

This commit is contained in:
lisonge
2023-12-25 16:46:26 +08:00
parent 81a820d4b2
commit 623bcbd29b
6 changed files with 281 additions and 171 deletions

30
src/categories.ts Normal file
View File

@@ -0,0 +1,30 @@
import type { RawCategory } from './types';
const categories: RawCategory[] = [
{
key: 0,
name: '开屏广告',
},
{
key: 1,
name: '青少年模式',
},
{
key: 2,
name: '更新提示',
},
{
key: 3,
name: '评价提示',
},
{
key: 4,
name: '通知提示',
},
{
key: 5,
name: '定位提示',
},
];
export default categories;