Skip to content

Commit

Permalink
Support hr.de (fixes #943)
Browse files Browse the repository at this point in the history
  • Loading branch information
qsniyg committed Feb 5, 2024
1 parent e7e000b commit c20c6c0
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
10 changes: 8 additions & 2 deletions src/userscript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60996,7 +60996,13 @@ var $$IMU_EXPORT$$;
// https://www.tagesschau.de/multimedia/bilder/coronavirus-deutschland-283~_v-videowebm.jpg
// https://www.tagesschau.de/multimedia/bilder/coronavirus-deutschland-283.jpg -- 1920x1080
// https://www.tagesschau.de/multimedia/bilder/coronavirus-deutschland-283~_v-original.jpg -- 1920x1080
domain_nowww === "tagesschau.de") {
domain_nowww === "tagesschau.de" ||
// thanks to nimbuz on discord: https://github.com/qsniyg/maxurl/issues/943
// https://www.hr.de/presse/der-hr/2021/040hr-2021-christopher-plass-100~_t-1633437528836_v-16to7.jpg
// https://www.hr.de/presse/der-hr/2021/040hr-2021-christopher-plass-100~_v-original.jpg
// https://www.hr.de/presse/der-hr/2020/sendesaal-ohne-publikum-100~_t-1626860902067_v-16to7.jpg
// https://www.hr.de/presse/der-hr/2020/sendesaal-ohne-publikum-100~_v-original.jpg
domain_nowww === "hr.de") {
// https://www1.wdr.de/kinder/radio/kiraka/nachrichten/klicker/eisberg-bedroht-dorf-in-groenland100~_v-gseaclassicxl.jpg
// https://www1.wdr.de/kinder/radio/kiraka/nachrichten/klicker/eisberg-bedroht-dorf-in-groenland100~_v-original.jpg
// https://www1.wdr.de/mediathek/audio/sendereihen-bilder/besser-so-podcast-wdr-100~_v-gseagaleriexl.jpg
Expand All @@ -61005,7 +61011,7 @@ var $$IMU_EXPORT$$;
// https://www1.wdr.de/verbraucher/rezepte/heimathaeppchen/heimathaeppchen-foto-102.png -- 310x174
// https://www1.wdr.de/verbraucher/rezepte/heimathaeppchen/heimathaeppchen-foto-102~_v-original.png -- 1920x1080
return {
url: src.replace(/~_v-[a-zA-Z0-9]+(\.[^/.]*)$/, "~_v-original$1"),
url: src.replace(/~(?:_t-[0-9]+)?_v-[a-zA-Z0-9]+(\.[^/.]*)$/, "~_v-original$1"),
can_head: false // wrong content-type
};
}
Expand Down
10 changes: 8 additions & 2 deletions userscript.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -55381,7 +55381,13 @@ var $$IMU_EXPORT$$;
// https://www.tagesschau.de/multimedia/bilder/coronavirus-deutschland-283~_v-videowebm.jpg
// https://www.tagesschau.de/multimedia/bilder/coronavirus-deutschland-283.jpg -- 1920x1080
// https://www.tagesschau.de/multimedia/bilder/coronavirus-deutschland-283~_v-original.jpg -- 1920x1080
domain_nowww === "tagesschau.de") {
domain_nowww === "tagesschau.de" ||
// thanks to nimbuz on discord: https://github.com/qsniyg/maxurl/issues/943
// https://www.hr.de/presse/der-hr/2021/040hr-2021-christopher-plass-100~_t-1633437528836_v-16to7.jpg
// https://www.hr.de/presse/der-hr/2021/040hr-2021-christopher-plass-100~_v-original.jpg
// https://www.hr.de/presse/der-hr/2020/sendesaal-ohne-publikum-100~_t-1626860902067_v-16to7.jpg
// https://www.hr.de/presse/der-hr/2020/sendesaal-ohne-publikum-100~_v-original.jpg
domain_nowww === "hr.de") {
// https://www1.wdr.de/kinder/radio/kiraka/nachrichten/klicker/eisberg-bedroht-dorf-in-groenland100~_v-gseaclassicxl.jpg
// https://www1.wdr.de/kinder/radio/kiraka/nachrichten/klicker/eisberg-bedroht-dorf-in-groenland100~_v-original.jpg
// https://www1.wdr.de/mediathek/audio/sendereihen-bilder/besser-so-podcast-wdr-100~_v-gseagaleriexl.jpg
Expand All @@ -55390,7 +55396,7 @@ var $$IMU_EXPORT$$;
// https://www1.wdr.de/verbraucher/rezepte/heimathaeppchen/heimathaeppchen-foto-102.png -- 310x174
// https://www1.wdr.de/verbraucher/rezepte/heimathaeppchen/heimathaeppchen-foto-102~_v-original.png -- 1920x1080
return {
url: src.replace(/~_v-[a-zA-Z0-9]+(\.[^/.]*)$/, "~_v-original$1"),
url: src.replace(/~(?:_t-[0-9]+)?_v-[a-zA-Z0-9]+(\.[^/.]*)$/, "~_v-original$1"),
can_head: false // wrong content-type
};
}
Expand Down

0 comments on commit c20c6c0

Please sign in to comment.