mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-03-11 21:35:32 +00:00
18 lines
897 B
Dart
18 lines
897 B
Dart
Map<String, String>? headers(String source) {
|
|
return source == 'mangakawaii'
|
|
? {
|
|
'Referer': 'https://www.mangakawaii.io/',
|
|
'User-Agent':
|
|
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/8\$userAgentRandomizer1.0.4\$userAgentRandomizer3.1\$userAgentRandomizer2 Safari/537.36',
|
|
'Accept-Language': 'fr'
|
|
}
|
|
: source == 'mangahere'
|
|
? {"Referer": "https://www.mangahere.cc/", "Cookie": "isAdult=1"}
|
|
: source == 'comick'
|
|
? {
|
|
'Referer': 'https://comick.app/',
|
|
'User-Agent':
|
|
'Tachiyomi Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/8\\\$userAgentRandomizer1.0.4\\\$userAgentRandomizer3.1\\\$userAgentRandomizer2 Safari/537.36'
|
|
}
|
|
: {};
|
|
}
|