mirror of
https://github.com/kodjodevf/mangayomi-extensions.git
synced 2026-02-14 10:51:17 +00:00
add extractor prefix name
This commit is contained in:
@@ -7,7 +7,7 @@ const mangayomiSources = [{
|
|||||||
"typeSource": "single",
|
"typeSource": "single",
|
||||||
"isManga": false,
|
"isManga": false,
|
||||||
"isNsfw": false,
|
"isNsfw": false,
|
||||||
"version": "0.0.3",
|
"version": "0.0.35",
|
||||||
"dateFormat": "",
|
"dateFormat": "",
|
||||||
"dateFormatLocale": "",
|
"dateFormatLocale": "",
|
||||||
"pkgPath": "anime/src/en/allanime.js"
|
"pkgPath": "anime/src/en/allanime.js"
|
||||||
@@ -193,7 +193,7 @@ class DefaultExtension extends MProvider {
|
|||||||
videos.push(vid);
|
videos.push(vid);
|
||||||
}
|
}
|
||||||
} else if (videoUrl.includes("streamlare.com") && altHosterSelection.some(element => 'streamlare' === element)) {
|
} else if (videoUrl.includes("streamlare.com") && altHosterSelection.some(element => 'streamlare' === element)) {
|
||||||
const vids = await streamlareExtractor(videoUrl);
|
const vids = await streamlareExtractor(videoUrl, 'Streamlare ');
|
||||||
for (const vid of vids) {
|
for (const vid of vids) {
|
||||||
videos.push(vid);
|
videos.push(vid);
|
||||||
}
|
}
|
||||||
@@ -203,7 +203,7 @@ class DefaultExtension extends MProvider {
|
|||||||
videos.push(vid);
|
videos.push(vid);
|
||||||
}
|
}
|
||||||
} else if (videoUrl.includes("wish") && altHosterSelection.some(element => 'streamwish' === element)) {
|
} else if (videoUrl.includes("wish") && altHosterSelection.some(element => 'streamwish' === element)) {
|
||||||
const vids = await streamWishExtractor(videoUrl);
|
const vids = await streamWishExtractor(videoUrl, 'StreamWish ');
|
||||||
for (const vid of vids) {
|
for (const vid of vids) {
|
||||||
videos.push(vid);
|
videos.push(vid);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user