mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-05-14 05:52:51 +00:00
Fixed blocked services list
This commit is contained in:
parent
acc4858ac4
commit
f25705313f
2 changed files with 144 additions and 39 deletions
|
@ -1,37 +1,142 @@
|
|||
const List<String> services = [
|
||||
"9Gag",
|
||||
"Amazon",
|
||||
"Bilibili",
|
||||
"CloudFlare",
|
||||
"Dailymotion",
|
||||
"Discord",
|
||||
"Disney+",
|
||||
"EBay",
|
||||
"Epic Games",
|
||||
"Facebook",
|
||||
"Hulu",
|
||||
"Imgur",
|
||||
"Instagram",
|
||||
"Mail.ru",
|
||||
"Netflix",
|
||||
"OK.ru",
|
||||
"Origin",
|
||||
"Pinterest",
|
||||
"QQ",
|
||||
"Reddit",
|
||||
"Skype",
|
||||
"Snapchat",
|
||||
"Spotify",
|
||||
"Steam",
|
||||
"Telegram",
|
||||
"TikTok",
|
||||
"Tinder",
|
||||
"Twitch",
|
||||
"Viber",
|
||||
"Vimeo",
|
||||
"VK.com",
|
||||
"WeChat",
|
||||
"Weibo",
|
||||
"WhatsApp",
|
||||
"YouTube"
|
||||
const List<Map<String, String>> services = [
|
||||
{
|
||||
'id': '9gag',
|
||||
'label': "9Gag",
|
||||
},
|
||||
{
|
||||
'id': 'amazon',
|
||||
'label': "Amazon",
|
||||
},
|
||||
{
|
||||
'id': 'bilibili',
|
||||
'label': "Bilibili",
|
||||
},
|
||||
{
|
||||
'id': 'cloudflare',
|
||||
'label': "CloudFlare",
|
||||
},
|
||||
{
|
||||
'id': 'dailymotion',
|
||||
'label': "Dailymotion",
|
||||
},
|
||||
{
|
||||
'id': 'discord',
|
||||
'label': "Discord",
|
||||
},
|
||||
{
|
||||
'id': 'disneyplus',
|
||||
'label': "Disney+",
|
||||
},
|
||||
{
|
||||
'id': 'ebay',
|
||||
'label': "EBay+",
|
||||
},
|
||||
{
|
||||
'id': 'epic_games',
|
||||
'label': "Epic Games",
|
||||
},
|
||||
{
|
||||
'id': 'facebook',
|
||||
'label': "Facebook",
|
||||
},
|
||||
{
|
||||
'id': 'hulu',
|
||||
'label': "Hulu",
|
||||
},
|
||||
{
|
||||
'id': 'imgur',
|
||||
'label': "Imgur",
|
||||
},
|
||||
{
|
||||
'id': 'instagram',
|
||||
'label': "Instagram",
|
||||
},
|
||||
{
|
||||
'id': 'mail_ru',
|
||||
'label': "Mail.ru",
|
||||
},
|
||||
{
|
||||
'id': 'netflix',
|
||||
'label': "Netflix",
|
||||
},
|
||||
{
|
||||
'id': 'ok',
|
||||
'label': "OK.ru",
|
||||
},
|
||||
{
|
||||
'id': 'origin',
|
||||
'label': "Origin",
|
||||
},
|
||||
{
|
||||
'id': 'pinterest',
|
||||
'label': "Pinterest",
|
||||
},
|
||||
{
|
||||
'id': 'qq',
|
||||
'label': "QQ",
|
||||
},
|
||||
{
|
||||
'id': 'reddit',
|
||||
'label': "Reddit",
|
||||
},
|
||||
{
|
||||
'id': 'skype',
|
||||
'label': "Skype",
|
||||
},
|
||||
{
|
||||
'id': 'snapchat',
|
||||
'label': "Snapchat",
|
||||
},
|
||||
{
|
||||
'id': 'spotify',
|
||||
'label': "Spotify",
|
||||
},
|
||||
{
|
||||
'id': 'steam',
|
||||
'label': "Steam",
|
||||
},
|
||||
{
|
||||
'id': 'telegram',
|
||||
'label': "Telegram",
|
||||
},
|
||||
{
|
||||
'id': 'tiktok',
|
||||
'label': "TikTok",
|
||||
},
|
||||
{
|
||||
'id': 'tinder',
|
||||
'label': "Tinder",
|
||||
},
|
||||
{
|
||||
'id': 'twitch',
|
||||
'label': "Twitch",
|
||||
},
|
||||
{
|
||||
'id': 'viber',
|
||||
'label': "Viber",
|
||||
},
|
||||
{
|
||||
'id': 'vimeo',
|
||||
'label': "Vimeo",
|
||||
},
|
||||
{
|
||||
'id': 'vk',
|
||||
'label': "VK.com",
|
||||
},
|
||||
{
|
||||
'id': 'wechat',
|
||||
'label': "WeChat",
|
||||
},
|
||||
{
|
||||
'id': 'weibo',
|
||||
'label': "Weibo",
|
||||
},
|
||||
{
|
||||
'id': 'whatsapp',
|
||||
'label': "WhatsApp",
|
||||
},
|
||||
{
|
||||
'id': 'youtube',
|
||||
'label': "YouTube",
|
||||
},
|
||||
];
|
Loading…
Add table
Add a link
Reference in a new issue