Compare commits
49 Commits
c4d45648b7
...
47d15a24e9
Author | SHA1 | Date | |
---|---|---|---|
|
47d15a24e9 | ||
|
e9ee092416 | ||
|
0a1290e86c | ||
|
91befa8a7d | ||
|
ddb209b3d7 | ||
|
c40156d2d6 | ||
|
d2f60d9389 | ||
|
c953afb962 | ||
|
849002b745 | ||
|
47ab183a38 | ||
|
9fda76b043 | ||
|
1b80d6b453 | ||
|
425a9966ca | ||
|
a2fb665ea0 | ||
|
543300e902 | ||
|
93cda22199 | ||
|
74433aef9a | ||
|
48e51add9b | ||
|
22a576a74f | ||
|
704253c7a9 | ||
|
589dfa44d5 | ||
|
936f7ca2bf | ||
|
ffd05c8155 | ||
|
acd662e4d6 | ||
|
7034283523 | ||
|
0ae2578345 | ||
|
fcac6b775e | ||
|
f0bd5d16cf | ||
|
bb055ec351 | ||
|
affeb4712e | ||
|
23c8358431 | ||
|
ce63a98026 | ||
|
55d0338cd8 | ||
|
10e2322715 | ||
|
575d9eb9de | ||
|
877f1cdb60 | ||
|
0b153b71af | ||
|
fcadda00fa | ||
|
eaa6bbbf7b | ||
|
04e25856f5 | ||
|
f4cb0c721c | ||
|
163f6e3f4e | ||
|
7c7007c5f5 | ||
|
1a8e5ad363 | ||
|
5243f470da | ||
|
673f3d488b | ||
|
b358cbe8c5 | ||
|
ff1d39920b | ||
|
141c0cf8cb |
47
JN/EXT/userScripts/bilfun.user.js
Normal file
@ -0,0 +1,47 @@
|
||||
// ==UserScript==
|
||||
// @name maccms-mxonepro
|
||||
// @namespace gmspider
|
||||
// @version 2025.1.11
|
||||
// @description maccms GMSpider
|
||||
// @author Luomo
|
||||
// @match *://*/*
|
||||
// @require https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.slim.min.js
|
||||
// @require https://cdn.jsdelivr.net/gh/CatVodSpider-GM/SFW-Spiders@main/Spiders-Lib/maccms10.js
|
||||
// @grant unsafeWindow
|
||||
// ==/UserScript==
|
||||
console.log(JSON.stringify(GM_info));
|
||||
(function () {
|
||||
const GMSpiderArgs = {};
|
||||
if (typeof GmSpiderInject !== 'undefined') {
|
||||
let args = JSON.parse(GmSpiderInject.GetSpiderArgs());
|
||||
GMSpiderArgs.fName = args.shift();
|
||||
GMSpiderArgs.fArgs = args;
|
||||
} else {
|
||||
GMSpiderArgs.fName = "homeContent";
|
||||
GMSpiderArgs.fArgs = [true];
|
||||
}
|
||||
Object.freeze(GMSpiderArgs);
|
||||
const GmSpider = MacCmsGMSpider({
|
||||
homeContent: {
|
||||
category: {
|
||||
select: ".navbar-item",
|
||||
slice: [1, 6]
|
||||
},
|
||||
defaultResult: {
|
||||
class: [{
|
||||
type_id: "6",
|
||||
type_name: "短剧"
|
||||
}]
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
$(document).ready(function () {
|
||||
const result = GmSpider[GMSpiderArgs.fName](...GMSpiderArgs.fArgs);
|
||||
console.log(result);
|
||||
if (typeof GmSpiderInject !== 'undefined') {
|
||||
GmSpiderInject.SetSpiderResult(JSON.stringify(result));
|
||||
}
|
||||
});
|
||||
})();
|
||||
|
44
JN/EXT/userScripts/dandantu.user.js
Normal file
@ -0,0 +1,44 @@
|
||||
// ==UserScript==
|
||||
// @name maccms-mxonepro
|
||||
// @namespace gmspider
|
||||
// @version 2025.1.11
|
||||
// @description maccms GMSpider
|
||||
// @author Luomo
|
||||
// @match *://*/*
|
||||
// @require https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.slim.min.js
|
||||
// @require https://cdn.jsdelivr.net/gh/CatVodSpider-GM/SFW-Spiders@main/Spiders-Lib/maccms10.js
|
||||
// @grant unsafeWindow
|
||||
// ==/UserScript==
|
||||
console.log(JSON.stringify(GM_info));
|
||||
(function () {
|
||||
const GMSpiderArgs = {};
|
||||
if (typeof GmSpiderInject !== 'undefined') {
|
||||
let args = JSON.parse(GmSpiderInject.GetSpiderArgs());
|
||||
GMSpiderArgs.fName = args.shift();
|
||||
GMSpiderArgs.fArgs = args;
|
||||
} else {
|
||||
GMSpiderArgs.fName = "homeContent";
|
||||
GMSpiderArgs.fArgs = [true];
|
||||
}
|
||||
Object.freeze(GMSpiderArgs);
|
||||
const GmSpider = MacCmsGMSpider({
|
||||
configPicUserAgent: false,
|
||||
homeContent: {
|
||||
category: {
|
||||
select: ".navbar-item",
|
||||
slice: [1, 5]
|
||||
}
|
||||
},
|
||||
playerContent: {
|
||||
OkPlayer: true
|
||||
}
|
||||
});
|
||||
$(document).ready(function () {
|
||||
const result = GmSpider[GMSpiderArgs.fName](...GMSpiderArgs.fArgs);
|
||||
console.log(result);
|
||||
if (typeof GmSpiderInject !== 'undefined') {
|
||||
GmSpiderInject.SetSpiderResult(JSON.stringify(result));
|
||||
}
|
||||
});
|
||||
})();
|
||||
|
44
JN/EXT/userScripts/fantuan.user.js
Normal file
@ -0,0 +1,44 @@
|
||||
// ==UserScript==
|
||||
// @name maccms-mxonepro
|
||||
// @namespace gmspider
|
||||
// @version 2025.1.11
|
||||
// @description maccms GMSpider
|
||||
// @author Luomo
|
||||
// @match *://*/*
|
||||
// @require https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.slim.min.js
|
||||
// @require https://cdn.jsdelivr.net/gh/CatVodSpider-GM/SFW-Spiders@main/Spiders-Lib/maccms10.js
|
||||
// @grant unsafeWindow
|
||||
// ==/UserScript==
|
||||
console.log(JSON.stringify(GM_info));
|
||||
(function () {
|
||||
const GMSpiderArgs = {};
|
||||
if (typeof GmSpiderInject !== 'undefined') {
|
||||
let args = JSON.parse(GmSpiderInject.GetSpiderArgs());
|
||||
GMSpiderArgs.fName = args.shift();
|
||||
GMSpiderArgs.fArgs = args;
|
||||
} else {
|
||||
GMSpiderArgs.fName = "homeContent";
|
||||
GMSpiderArgs.fArgs = [true];
|
||||
}
|
||||
Object.freeze(GMSpiderArgs);
|
||||
const GmSpider = MacCmsGMSpider({
|
||||
configPicUserAgent: false,
|
||||
homeContent: {
|
||||
category: {
|
||||
select: ".navbar-item",
|
||||
slice: [1, 5]
|
||||
}
|
||||
},
|
||||
playerContent: {
|
||||
OkPlayer: true
|
||||
}
|
||||
});
|
||||
$(document).ready(function () {
|
||||
const result = GmSpider[GMSpiderArgs.fName](...GMSpiderArgs.fArgs);
|
||||
console.log(result);
|
||||
if (typeof GmSpiderInject !== 'undefined') {
|
||||
GmSpiderInject.SetSpiderResult(JSON.stringify(result));
|
||||
}
|
||||
});
|
||||
})();
|
||||
|
44
JN/EXT/userScripts/freeok.user.js
Normal file
@ -0,0 +1,44 @@
|
||||
// ==UserScript==
|
||||
// @name maccms-mxonepro
|
||||
// @namespace gmspider
|
||||
// @version 2025.1.11
|
||||
// @description maccms GMSpider
|
||||
// @author Luomo
|
||||
// @match *://*/*
|
||||
// @require https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.slim.min.js
|
||||
// @require https://cdn.jsdelivr.net/gh/CatVodSpider-GM/SFW-Spiders@main/Spiders-Lib/maccms10.js
|
||||
// @grant unsafeWindow
|
||||
// ==/UserScript==
|
||||
console.log(JSON.stringify(GM_info));
|
||||
(function () {
|
||||
const GMSpiderArgs = {};
|
||||
if (typeof GmSpiderInject !== 'undefined') {
|
||||
let args = JSON.parse(GmSpiderInject.GetSpiderArgs());
|
||||
GMSpiderArgs.fName = args.shift();
|
||||
GMSpiderArgs.fArgs = args;
|
||||
} else {
|
||||
GMSpiderArgs.fName = "playerContent";
|
||||
GMSpiderArgs.fArgs = [true];
|
||||
}
|
||||
Object.freeze(GMSpiderArgs);
|
||||
const GmSpider = MacCmsGMSpider({
|
||||
configPicUserAgent: false,
|
||||
homeContent: {
|
||||
category: {
|
||||
select: ".navbar-item",
|
||||
slice: [1, 5]
|
||||
}
|
||||
},
|
||||
playerContent: {
|
||||
OkPlayer: true
|
||||
}
|
||||
});
|
||||
$(document).ready(function () {
|
||||
const result = GmSpider[GMSpiderArgs.fName](...GMSpiderArgs.fArgs);
|
||||
console.log(result);
|
||||
if (typeof GmSpiderInject !== 'undefined') {
|
||||
GmSpiderInject.SetSpiderResult(JSON.stringify(result));
|
||||
}
|
||||
});
|
||||
})();
|
||||
|
@ -5,9 +5,9 @@
|
||||
// @description gaze GMSpider
|
||||
// @author Luomo
|
||||
// @match https://gaze.run/*
|
||||
// @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.slim.min.js
|
||||
// @require https://cdn.jsdelivr.net/gh/CatVodSpider-GM/Spiders-Lib@main/lib/ajaxhook-3.0.3.min.js
|
||||
// @require https://unpkg.com/blob-util/dist/blob-util.min.js
|
||||
// @require https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.slim.min.js
|
||||
// @require https://cdn.jsdelivr.net/npm/ajax-hook@3.0.3/dist/ajaxhook.umd.min.js
|
||||
// @require https://cdn.jsdelivr.net/npm/blob-util@2.0.2/dist/blob-util.min.js
|
||||
// @grant unsafeWindow
|
||||
// @run-at document-end
|
||||
// ==/UserScript==
|
||||
@ -140,7 +140,7 @@ console.log(JSON.stringify(GM_info));
|
||||
fileData = fileData.replaceAll('Â ', "");
|
||||
playData = {
|
||||
type: "file",
|
||||
data: {
|
||||
ext: {
|
||||
header: {
|
||||
"User-Agent": window.navigator.userAgent,
|
||||
"Referer": window.location.href
|
||||
@ -151,13 +151,9 @@ console.log(JSON.stringify(GM_info));
|
||||
});
|
||||
} else {
|
||||
playData = {
|
||||
type: "match",
|
||||
data: {
|
||||
url: src
|
||||
}
|
||||
type: "match"
|
||||
}
|
||||
}
|
||||
console.log(playData);
|
||||
return playData;
|
||||
}
|
||||
|
||||
@ -227,43 +223,30 @@ console.log(JSON.stringify(GM_info));
|
||||
return listVideos(result);
|
||||
},
|
||||
detailContent: function (ids) {
|
||||
console.log(ids);
|
||||
return new Promise(function (resolve) {
|
||||
_gotSrc = resolve;
|
||||
}).then(async (playerSrc) => {
|
||||
console.log("playerSrc", playerSrc)
|
||||
let playUrl = [];
|
||||
let playValue = await getPlay(playerSrc.src);
|
||||
playUrl.push({
|
||||
name: $("#btngroup .playbtn").first().text().trim(),
|
||||
value: playValue
|
||||
})
|
||||
$("#btngroup .playbtn:gt(0)").each(function () {
|
||||
playUrl.push({
|
||||
name: $(this).text().trim(),
|
||||
value: {
|
||||
type: "webview",
|
||||
data: {
|
||||
replace: {
|
||||
mcid: unsafeWindow.mcid,
|
||||
path: $(this).data("path")
|
||||
}
|
||||
}
|
||||
let media = [];
|
||||
$("#btngroup .playbtn").each(function () {
|
||||
media.push({
|
||||
name: $(this).text().trim(),
|
||||
type: "webview",
|
||||
ext: {
|
||||
replace: {
|
||||
mcid: unsafeWindow.mcid,
|
||||
path: $(this).data("path")
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
return {
|
||||
vod_id: ids[0],
|
||||
vod_name: $(".d-flex .grade:first").text().trim(),
|
||||
vod_pic: $(".d-flex .pimgs").attr("src"),
|
||||
vod_remarks: $(".d-flex .grade:eq(1)").text().trim(),
|
||||
vod_content: $(".d-flex p").text().trim(),
|
||||
vod_play_data: [{
|
||||
from: "注视影视",
|
||||
url: playUrl
|
||||
}]
|
||||
};
|
||||
});
|
||||
})
|
||||
return {
|
||||
vod_id: ids[0],
|
||||
vod_name: $(".d-flex .grade:first").text().trim(),
|
||||
vod_pic: $(".d-flex .pimgs").attr("src"),
|
||||
vod_remarks: $(".d-flex .grade:eq(1)").text().trim(),
|
||||
vod_content: $(".d-flex p").text().trim(),
|
||||
vod_play_data: [{
|
||||
from: "注视影视",
|
||||
media: media
|
||||
}]
|
||||
};
|
||||
},
|
||||
playerContent: function (flag, id, vipFlags) {
|
||||
console.log(flag, id, unsafeWindow.mid);
|
||||
|
@ -6,7 +6,7 @@
|
||||
// @author Luomo
|
||||
// @match https://www.upfuhn.com/*
|
||||
// @require https://cdn.jsdelivr.net/gh/CatVodSpider-GM/Spiders-Lib@main/lib/browser-extension-url-match-1.2.0.min.js
|
||||
// @require https://scriptcat.org/lib/637/1.4.3/ajaxHooker.js
|
||||
// @require https://cdn.jsdelivr.net/gh/CatVodSpider-GM/SFW-Spiders@main/Spiders-Lib/ajaxHooker-1.4.3.js
|
||||
// @grant GM_setValue
|
||||
// @grant GM_getValue
|
||||
// @grant unsafeWindow
|
||||
@ -20,28 +20,43 @@ console.log(JSON.stringify(GM_info));
|
||||
GMSpiderArgs.fName = args.shift();
|
||||
GMSpiderArgs.fArgs = args;
|
||||
} else {
|
||||
// GMSpiderArgs.fName = "homeContent";
|
||||
// GMSpiderArgs.fArgs = [true];
|
||||
GMSpiderArgs.fName = "searchContent";
|
||||
GMSpiderArgs.fArgs = [true];
|
||||
// GMSpiderArgs.fName = "categoryContent";
|
||||
// GMSpiderArgs.fArgs = ["82", 2, true, {tag: "动作", y: "2024", o: "1", a: "大陆"}];
|
||||
GMSpiderArgs.fArgs = ["82", 2, true, {tag: "动作", y: "2024", o: "1", a: "大陆"}];
|
||||
}
|
||||
Object.freeze(GMSpiderArgs);
|
||||
let hookConfigs = {
|
||||
"homeContent": [{
|
||||
matcher: matchPattern("https://*/v1/report_channel_data").assertValid(),
|
||||
onResponseHook: function (response) {
|
||||
Array.from(document.querySelectorAll(".left-wrap .tab-box:nth-child(2) .swiper-slide span"))
|
||||
.find(el => el.textContent === "全部").dispatchEvent(new Event("click"));
|
||||
"homeContent": [
|
||||
{
|
||||
matcher: matchPattern("https://*/*/meta/*.json").assertValid(),
|
||||
onResponseHook: function (response) {
|
||||
let executed = false;
|
||||
unsafeWindow.useNuxtApp().hook('link:prefetch', () => {
|
||||
if (!executed) {
|
||||
Array.from(document.querySelectorAll(".left-wrap .tab-box:nth-child(2) .swiper-slide span")).find(el => el.textContent === "全部").dispatchEvent(new Event("click"));
|
||||
}
|
||||
executed = true;
|
||||
});
|
||||
}
|
||||
},
|
||||
{
|
||||
dataKey: "ys_video_sites", matcher: matchPattern("https://*/v1/ys_video_sites?*").assertValid()
|
||||
}
|
||||
}, {
|
||||
dataKey: "ys_video_sites", matcher: matchPattern("https://*/v1/ys_video_sites?*").assertValid()
|
||||
}], "categoryContent": [{
|
||||
matcher: matchPattern("https://*/v1/report_channel_data").assertValid(),
|
||||
],
|
||||
"categoryContent": [{
|
||||
matcher: matchPattern("https://*/*/meta/*.json").assertValid(),
|
||||
onResponseHook: function (response) {
|
||||
const extend = GMSpiderArgs.fArgs[3];
|
||||
let tag = extend?.tag ?? "全部"
|
||||
Array.from(document.querySelectorAll(".left-wrap .tab-box:nth-child(2) .swiper-slide span"))
|
||||
.find(el => el.textContent === tag).dispatchEvent(new Event("click"));
|
||||
let executed = false;
|
||||
unsafeWindow.useNuxtApp().hook('link:prefetch', () => {
|
||||
if (!executed) {
|
||||
Array.from(document.querySelectorAll(".left-wrap .tab-box:nth-child(2) .swiper-slide span"))
|
||||
.find(el => el.textContent === tag).dispatchEvent(new Event("click"));
|
||||
}
|
||||
executed = true;
|
||||
});
|
||||
}
|
||||
}, {
|
||||
dataKey: "ys_video_sites",
|
||||
@ -63,10 +78,12 @@ console.log(JSON.stringify(GM_info));
|
||||
}
|
||||
}],
|
||||
"detailContent": [{
|
||||
dataKey: "meta", matcher: matchPattern("https://*/v1/report_channel_data").assertValid()
|
||||
dataKey: "meta",
|
||||
matcher: matchPattern("https://*/*/meta/*.json").assertValid(),
|
||||
}],
|
||||
"searchContent": [{
|
||||
dataKey: "meta", matcher: matchPattern("https://*/v1/report_channel_data").assertValid()
|
||||
dataKey: "meta",
|
||||
matcher: matchPattern("https://*/*/meta/*.json").assertValid(),
|
||||
}],
|
||||
};
|
||||
const GmSpider = (function () {
|
||||
@ -87,6 +104,8 @@ console.log(JSON.stringify(GM_info));
|
||||
};
|
||||
return {
|
||||
homeContent: function (filter) {
|
||||
//清理cookie
|
||||
document.cookie.split(";").forEach(function(c) { document.cookie = c.replace(/^ +/, "").replace(/=.*/, "=;expires=" + new Date().toUTCString() + ";path=/"); });
|
||||
let result = {
|
||||
class: [{type_id: "85", type_name: "短剧"}, {type_id: "81", type_name: "电影"}, {
|
||||
type_id: "82",
|
||||
@ -145,35 +164,39 @@ console.log(JSON.stringify(GM_info));
|
||||
}, detailContent: function (ids) {
|
||||
let playUrl = [];
|
||||
let vod = {};
|
||||
const formatData = JSON.parse(document.getElementById("__NUXT_DATA__").innerHTML);
|
||||
formatData.forEach((data) => {
|
||||
if (typeof (vod?.vod_id) == "undefined" && typeof (data?.video_desc) === "number") {
|
||||
const nuxtData = JSON.parse(JSON.stringify(unsafeWindow.__NUXT__.data));
|
||||
for (const [key, value] of Object.entries(nuxtData)) {
|
||||
if (typeof (value.data?.ys_video_site) != "undefined") {
|
||||
value.data.data.forEach((item) => {
|
||||
playUrl.push({
|
||||
name: item.series_num,
|
||||
type: "finalUrl",
|
||||
ext: {
|
||||
header: {
|
||||
"User-Agent": window.navigator.userAgent,
|
||||
"Referer": window.location.href
|
||||
},
|
||||
url: item.video_url
|
||||
}
|
||||
})
|
||||
})
|
||||
const ysVideoSite = value.data.ys_video_site;
|
||||
vod = {
|
||||
vod_id: formatData[data.video_site_id],
|
||||
vod_name: formatData[data.video_name],
|
||||
vod_content: formatData[data.video_desc],
|
||||
vod_year: formatData[data.years],
|
||||
vod_area: formatData[data.area],
|
||||
vod_actor: formatData[data.main_actor],
|
||||
type_name: formatData[data.tag],
|
||||
vod_id: ysVideoSite.video_site_id,
|
||||
vod_name: ysVideoSite.video_name,
|
||||
vod_content: ysVideoSite.video_desc,
|
||||
vod_year: ysVideoSite.years,
|
||||
vod_area: ysVideoSite.area,
|
||||
vod_actor: ysVideoSite.main_actor,
|
||||
type_name: ysVideoSite.tag,
|
||||
vod_play_data: [{
|
||||
from: "Hi视频", url: playUrl
|
||||
from: "Hi视频",
|
||||
media: playUrl
|
||||
}]
|
||||
};
|
||||
|
||||
}
|
||||
if (typeof (data?.series_num) === "number") {
|
||||
playUrl.push({
|
||||
name: formatData[data.series_num],
|
||||
value: {
|
||||
type: "finalUrl", data: {
|
||||
header: {
|
||||
"User-Agent": window.navigator.userAgent, "Referer": window.location.href
|
||||
}, url: formatData[data.video_url]
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
return vod;
|
||||
}, searchContent: function (key, quick, pg) {
|
||||
const result = {
|
||||
@ -181,30 +204,30 @@ console.log(JSON.stringify(GM_info));
|
||||
page: pg,
|
||||
pagecount: 1
|
||||
};
|
||||
const formatData = JSON.parse(document.getElementById("__NUXT_DATA__").innerHTML);
|
||||
console.log(formatData);
|
||||
formatData.forEach((data) => {
|
||||
if (typeof (data?.first_video_series) === "number") {
|
||||
let firstVideo = formatData[data.first_video_series];
|
||||
result.list.push({
|
||||
vod_id: formatData[firstVideo.video_site_id],
|
||||
vod_name: formatData[firstVideo.video_name],
|
||||
vod_pic: formatData[firstVideo.video_vertical_url],
|
||||
vod_remarks: formatData[firstVideo.tag],
|
||||
vod_year: formatData[firstVideo.years]
|
||||
})
|
||||
formatData[data.video_sites].forEach((videoIndex) => {
|
||||
let video = formatData[videoIndex];
|
||||
const nuxtData = JSON.parse(JSON.stringify(unsafeWindow.__NUXT__.data));
|
||||
for (const [key, value] of Object.entries(nuxtData)) {
|
||||
if (typeof (value.data?.first_video_series) != "undefined") {
|
||||
if (value.data.first_video_series != null) {
|
||||
const firstVideo = value.data.first_video_series
|
||||
result.list.push({
|
||||
vod_id: formatData[video.video_site_id],
|
||||
vod_name: formatData[video.video_name],
|
||||
vod_pic: formatData[video.video_vertical_url],
|
||||
vod_remarks: formatData[video.tag],
|
||||
vod_year: formatData[video.years]
|
||||
vod_id: firstVideo.video_site_id,
|
||||
vod_name: firstVideo.video_name,
|
||||
vod_pic: firstVideo.video_vertical_url,
|
||||
vod_remarks: firstVideo.tag,
|
||||
vod_year: firstVideo.years
|
||||
})
|
||||
}
|
||||
value.data.video_sites.forEach((video) => {
|
||||
result.list.push({
|
||||
vod_id: video.video_site_id,
|
||||
vod_name: video.video_name,
|
||||
vod_pic: video.video_vertical_url,
|
||||
vod_remarks: video.tag,
|
||||
vod_year: video.years
|
||||
})
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
return result;
|
||||
}
|
||||
};
|
||||
@ -214,7 +237,7 @@ console.log(JSON.stringify(GM_info));
|
||||
let hookResult = {};
|
||||
ajaxHooker.hook(request => {
|
||||
hookConfigs[GMSpiderArgs.fName].forEach((hookConfig) => {
|
||||
if (typeof hookConfig.onRequestHook === "function" && hookConfig.matcher.match(request.url)) {
|
||||
if (typeof hookConfig.onRequestHook === "function" && hookConfig.matcher.match(request.url.startsWith("http") ? request.url : unsafeWindow.window.location.origin + request.url)) {
|
||||
hookConfig.onRequestHook(request);
|
||||
}
|
||||
});
|
||||
@ -226,7 +249,7 @@ console.log(JSON.stringify(GM_info));
|
||||
dataTodoCount++;
|
||||
}
|
||||
}
|
||||
if (hookConfig.matcher.match(request.url)) {
|
||||
if (hookConfig.matcher.match(request.url.startsWith("http") ? request.url : unsafeWindow.window.location.origin + request.url)) {
|
||||
request.response = res => {
|
||||
if (typeof hookConfig.onResponseHook === "function") {
|
||||
hookConfig.onResponseHook(res);
|
||||
|
41
JN/EXT/userScripts/huochetaidu.user.js
Normal file
@ -0,0 +1,41 @@
|
||||
// ==UserScript==
|
||||
// @name maccms-mxonepro
|
||||
// @namespace gmspider
|
||||
// @version 2025.1.11
|
||||
// @description maccms GMSpider
|
||||
// @author Luomo
|
||||
// @match *://*/*
|
||||
// @require https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.slim.min.js
|
||||
// @require https://cdn.jsdelivr.net/gh/CatVodSpider-GM/SFW-Spiders@main/Spiders-Lib/maccms10.js
|
||||
// @grant unsafeWindow
|
||||
// ==/UserScript==
|
||||
console.log(JSON.stringify(GM_info));
|
||||
(function () {
|
||||
const GMSpiderArgs = {};
|
||||
if (typeof GmSpiderInject !== 'undefined') {
|
||||
let args = JSON.parse(GmSpiderInject.GetSpiderArgs());
|
||||
GMSpiderArgs.fName = args.shift();
|
||||
GMSpiderArgs.fArgs = args;
|
||||
} else {
|
||||
GMSpiderArgs.fName = "homeContent";
|
||||
GMSpiderArgs.fArgs = [true];
|
||||
}
|
||||
Object.freeze(GMSpiderArgs);
|
||||
const GmSpider = MacCmsGMSpider({
|
||||
configPicUserAgent: true,
|
||||
homeContent: {
|
||||
category: {
|
||||
select: ".navbar-item",
|
||||
slice: [1, 6]
|
||||
}
|
||||
}
|
||||
});
|
||||
$(document).ready(function () {
|
||||
const result = GmSpider[GMSpiderArgs.fName](...GMSpiderArgs.fArgs);
|
||||
console.log(result);
|
||||
if (typeof GmSpiderInject !== 'undefined') {
|
||||
GmSpiderInject.SetSpiderResult(JSON.stringify(result));
|
||||
}
|
||||
});
|
||||
})();
|
||||
|
44
JN/EXT/userScripts/juyeye.user.js
Normal file
@ -0,0 +1,44 @@
|
||||
// ==UserScript==
|
||||
// @name maccms-mxonepro
|
||||
// @namespace gmspider
|
||||
// @version 2025.1.11
|
||||
// @description maccms GMSpider
|
||||
// @author Luomo
|
||||
// @match *://*/*
|
||||
// @require https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.slim.min.js
|
||||
// @require https://cdn.jsdelivr.net/gh/CatVodSpider-GM/SFW-Spiders@main/Spiders-Lib/maccms10.js
|
||||
// @grant unsafeWindow
|
||||
// ==/UserScript==
|
||||
console.log(JSON.stringify(GM_info));
|
||||
(function () {
|
||||
const GMSpiderArgs = {};
|
||||
if (typeof GmSpiderInject !== 'undefined') {
|
||||
let args = JSON.parse(GmSpiderInject.GetSpiderArgs());
|
||||
GMSpiderArgs.fName = args.shift();
|
||||
GMSpiderArgs.fArgs = args;
|
||||
} else {
|
||||
GMSpiderArgs.fName = "homeContent";
|
||||
GMSpiderArgs.fArgs = [true];
|
||||
}
|
||||
Object.freeze(GMSpiderArgs);
|
||||
const GmSpider = MacCmsGMSpider({
|
||||
configPicUserAgent: false,
|
||||
homeContent: {
|
||||
category: {
|
||||
select: ".navbar-item",
|
||||
slice: [1, 5]
|
||||
}
|
||||
},
|
||||
playerContent: {
|
||||
OkPlayer: true
|
||||
}
|
||||
});
|
||||
$(document).ready(function () {
|
||||
const result = GmSpider[GMSpiderArgs.fName](...GMSpiderArgs.fArgs);
|
||||
console.log(result);
|
||||
if (typeof GmSpiderInject !== 'undefined') {
|
||||
GmSpiderInject.SetSpiderResult(JSON.stringify(result));
|
||||
}
|
||||
});
|
||||
})();
|
||||
|
41
JN/EXT/userScripts/pipiys.user.js
Normal file
@ -0,0 +1,41 @@
|
||||
// ==UserScript==
|
||||
// @name maccms-mxonepro
|
||||
// @namespace gmspider
|
||||
// @version 2025.1.11
|
||||
// @description maccms GMSpider
|
||||
// @author Luomo
|
||||
// @match *://*/*
|
||||
// @require https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.slim.min.js
|
||||
// @require https://cdn.jsdelivr.net/gh/CatVodSpider-GM/SFW-Spiders@main/Spiders-Lib/maccms10.js
|
||||
// @grant unsafeWindow
|
||||
// ==/UserScript==
|
||||
console.log(JSON.stringify(GM_info));
|
||||
(function () {
|
||||
const GMSpiderArgs = {};
|
||||
if (typeof GmSpiderInject !== 'undefined') {
|
||||
let args = JSON.parse(GmSpiderInject.GetSpiderArgs());
|
||||
GMSpiderArgs.fName = args.shift();
|
||||
GMSpiderArgs.fArgs = args;
|
||||
} else {
|
||||
GMSpiderArgs.fName = "homeContent";
|
||||
GMSpiderArgs.fArgs = [true];
|
||||
}
|
||||
Object.freeze(GMSpiderArgs);
|
||||
const GmSpider = MacCmsGMSpider({
|
||||
configPicUserAgent: false,
|
||||
homeContent: {
|
||||
category: {
|
||||
select: ".navbar-item",
|
||||
slice: [1, 7]
|
||||
}
|
||||
}
|
||||
});
|
||||
$(document).ready(function () {
|
||||
const result = GmSpider[GMSpiderArgs.fName](...GMSpiderArgs.fArgs);
|
||||
console.log(result);
|
||||
if (typeof GmSpiderInject !== 'undefined') {
|
||||
GmSpiderInject.SetSpiderResult(JSON.stringify(result));
|
||||
}
|
||||
});
|
||||
})();
|
||||
|
41
JN/EXT/userScripts/ppdys.user.js
Normal file
@ -0,0 +1,41 @@
|
||||
// ==UserScript==
|
||||
// @name maccms-mxonepro
|
||||
// @namespace gmspider
|
||||
// @version 2025.1.11
|
||||
// @description maccms GMSpider
|
||||
// @author Luomo
|
||||
// @match *://*/*
|
||||
// @require https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.slim.min.js
|
||||
// @require https://cdn.jsdelivr.net/gh/CatVodSpider-GM/SFW-Spiders@main/Spiders-Lib/maccms10.js
|
||||
// @grant unsafeWindow
|
||||
// ==/UserScript==
|
||||
console.log(JSON.stringify(GM_info));
|
||||
(function () {
|
||||
const GMSpiderArgs = {};
|
||||
if (typeof GmSpiderInject !== 'undefined') {
|
||||
let args = JSON.parse(GmSpiderInject.GetSpiderArgs());
|
||||
GMSpiderArgs.fName = args.shift();
|
||||
GMSpiderArgs.fArgs = args;
|
||||
} else {
|
||||
GMSpiderArgs.fName = "homeContent";
|
||||
GMSpiderArgs.fArgs = [true];
|
||||
}
|
||||
Object.freeze(GMSpiderArgs);
|
||||
const GmSpider = MacCmsGMSpider({
|
||||
configPicUserAgent: false,
|
||||
homeContent: {
|
||||
category: {
|
||||
select: ".navbar-item",
|
||||
slice: [1, 6]
|
||||
}
|
||||
}
|
||||
});
|
||||
$(document).ready(function () {
|
||||
const result = GmSpider[GMSpiderArgs.fName](...GMSpiderArgs.fArgs);
|
||||
console.log(result);
|
||||
if (typeof GmSpiderInject !== 'undefined') {
|
||||
GmSpiderInject.SetSpiderResult(JSON.stringify(result));
|
||||
}
|
||||
});
|
||||
})();
|
||||
|
41
JN/EXT/userScripts/yirenmeng.user.js
Normal file
@ -0,0 +1,41 @@
|
||||
// ==UserScript==
|
||||
// @name maccms-mxonepro
|
||||
// @namespace gmspider
|
||||
// @version 2025.1.11
|
||||
// @description maccms GMSpider
|
||||
// @author Luomo
|
||||
// @match *://*/*
|
||||
// @require https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.slim.min.js
|
||||
// @require https://cdn.jsdelivr.net/gh/CatVodSpider-GM/SFW-Spiders@main/Spiders-Lib/maccms10.js
|
||||
// @grant unsafeWindow
|
||||
// ==/UserScript==
|
||||
console.log(JSON.stringify(GM_info));
|
||||
(function () {
|
||||
const GMSpiderArgs = {};
|
||||
if (typeof GmSpiderInject !== 'undefined') {
|
||||
let args = JSON.parse(GmSpiderInject.GetSpiderArgs());
|
||||
GMSpiderArgs.fName = args.shift();
|
||||
GMSpiderArgs.fArgs = args;
|
||||
} else {
|
||||
GMSpiderArgs.fName = "homeContent";
|
||||
GMSpiderArgs.fArgs = [true];
|
||||
}
|
||||
Object.freeze(GMSpiderArgs);
|
||||
const GmSpider = MacCmsGMSpider({
|
||||
configPicUserAgent: false,
|
||||
homeContent: {
|
||||
category: {
|
||||
select: ".navbar-item",
|
||||
slice: [1, 8]
|
||||
}
|
||||
}
|
||||
});
|
||||
$(document).ready(function () {
|
||||
const result = GmSpider[GMSpiderArgs.fName](...GMSpiderArgs.fArgs);
|
||||
console.log(result);
|
||||
if (typeof GmSpiderInject !== 'undefined') {
|
||||
GmSpiderInject.SetSpiderResult(JSON.stringify(result));
|
||||
}
|
||||
});
|
||||
})();
|
||||
|
@ -6,7 +6,7 @@
|
||||
// @author Luomo
|
||||
// @match https://m.yfsp.tv/*
|
||||
// @require https://cdn.jsdelivr.net/gh/CatVodSpider-GM/Spiders-Lib@main/lib/browser-extension-url-match-1.2.0.min.js
|
||||
// @require https://cdn.jsdelivr.net/gh/CatVodSpider-GM/Spiders-Lib@main/lib/ajaxhook-3.0.3.min.js
|
||||
// @require https://cdn.jsdelivr.net/npm/ajax-hook@3.0.3/dist/ajaxhook.umd.min.js
|
||||
// @grant GM_setValue
|
||||
// @grant GM_getValue
|
||||
// @grant unsafeWindow
|
||||
@ -166,38 +166,34 @@ console.log(JSON.stringify(GM_info));
|
||||
let episodeKey = "";
|
||||
hookResult.playdata.data.list.forEach((item) => {
|
||||
if (mediaUrl === "" && item.mediaUrl !== "") {
|
||||
mediaUrl = `@{base64Decoder:${btoa(item.mediaUrl)}}`;
|
||||
mediaUrl = item.mediaUrl;
|
||||
episodeKey = item.episodeKey;
|
||||
}
|
||||
})
|
||||
let vodPlayUrls = [];
|
||||
let media = [];
|
||||
if (videodetails.videoType !== 0) {
|
||||
if (typeof hookResult.videochoosegather !== "undefined") {
|
||||
hookResult.videochoosegather.data.list.forEach((item) => {
|
||||
if (videodetails.episodeTitle === item.episodeTitle) {
|
||||
vodPlayUrls.push({
|
||||
media.push({
|
||||
name: item.episodeTitle,
|
||||
value: {
|
||||
type: "finalUrl",
|
||||
data: {
|
||||
"header": {
|
||||
"User-Agent": window.navigator.userAgent,
|
||||
"Referer": window.location.href
|
||||
},
|
||||
"url": mediaUrl
|
||||
}
|
||||
type: "finalUrl",
|
||||
ext: {
|
||||
"header": {
|
||||
"User-Agent": window.navigator.userAgent,
|
||||
"Referer": window.location.href
|
||||
},
|
||||
"url": mediaUrl
|
||||
}
|
||||
});
|
||||
} else {
|
||||
vodPlayUrls.push({
|
||||
media.push({
|
||||
name: item.episodeTitle,
|
||||
value: {
|
||||
type: "webview",
|
||||
data: {
|
||||
replace: {
|
||||
mediaKey: item.mediaKey,
|
||||
episodeKey: item.episodeKey
|
||||
}
|
||||
type: "webview",
|
||||
ext: {
|
||||
replace: {
|
||||
mediaKey: item.mediaKey,
|
||||
episodeKey: item.episodeKey
|
||||
}
|
||||
}
|
||||
})
|
||||
@ -208,17 +204,15 @@ console.log(JSON.stringify(GM_info));
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
vodPlayUrls.push({
|
||||
media.push({
|
||||
name: videodetails.episodeTitle,
|
||||
value: {
|
||||
type: "finalUrl",
|
||||
data: {
|
||||
"header": {
|
||||
"User-Agent": window.navigator.userAgent,
|
||||
"Referer": window.location.href
|
||||
},
|
||||
"url": mediaUrl
|
||||
}
|
||||
type: "finalUrl",
|
||||
ext: {
|
||||
"header": {
|
||||
"User-Agent": window.navigator.userAgent,
|
||||
"Referer": window.location.href
|
||||
},
|
||||
"url": mediaUrl
|
||||
}
|
||||
})
|
||||
}
|
||||
@ -233,10 +227,8 @@ console.log(JSON.stringify(GM_info));
|
||||
vod_content: videodetails.introduce,
|
||||
vod_play_data: [{
|
||||
from: "爱壹帆",
|
||||
url: vodPlayUrls
|
||||
}],
|
||||
vod_play_from: "爱壹帆",
|
||||
vod_play_url: vodPlayUrls.join("#"),
|
||||
media: media
|
||||
}]
|
||||
};
|
||||
},
|
||||
playerContent: function (flag, id, vipFlags) {
|
||||
@ -248,7 +240,7 @@ console.log(JSON.stringify(GM_info));
|
||||
})
|
||||
return {
|
||||
type: "finalUrl",
|
||||
data: {
|
||||
ext: {
|
||||
"header": {
|
||||
"User-Agent": window.navigator.userAgent,
|
||||
"Referer": window.location.href
|
||||
|
BIN
JN/N3RD/J/lem0111.jar
Normal file
BIN
JN/N3RD/J/pg.jar
@ -1 +1 @@
|
||||
PHPSESSID=4g1c08hcupecjgk5pprub7mgn3; BT_auth=1eca4EzOZFNQfsIR3TKcIPX8f39pm36KwjC1VTwlV9PFAdZG6fMRv6fLrb9ijCt9HSAmAbg41bqkwR0bMNdCTB9i05zlKU7pOTv_RIVA4mFMoiE1NYTq5Y1vLpxq9M--VlKA_sJCe0IXNH6kMez8KsMd6qY6G5hPrK-ciowTJqF3; BT_cookietime=a9b5532hfCbUNbP7vZFV71EfKNVWaP2RP6d3gh4mUgXUbqhyq9DO
|
||||
BT_auth=1eca4EzOZFNQfsIR3TKcIPX8f39pm36KwjC1VTwlV9PFAdZG6fMRv6fLrb9ijCt9HSAmAbg41bqkwR0bMNdCTB9i05zlKU7pOTv_RIVA4mFMoiE1NYTq5Y1vLpxq9M--VlKA_sJCe0IXNH6kMez8KsMd6qY6G5hPrK-ciowTJqF3; BT_cookietime=a9b5532hfCbUNbP7vZFV71EfKNVWaP2RP6d3gh4mUgXUbqhyq9DO; vrg_sc=00aeaa6295ddd071b4e9990ee5ccb6ae; vrg_go=1; PHPSESSID=71ff2tbjdeh24pej9nogd2lrtv
|
||||
|
33
JN/lem.json
@ -1,6 +1,7 @@
|
||||
{
|
||||
"spider":"./N3RD/J/lem0109.jar;md5;A0AFF712FA5B6B575E4F91D9E9B119F6",
|
||||
"spider":"./N3RD/J/lem0111.jar;md5;A8E0B9CDD49C215B89CCE40ABC2E9B8A",
|
||||
|
||||
//"spider":"./N3RD/J/lem0109.jar;md5;A0AFF712FA5B6B575E4F91D9E9B119F6",
|
||||
//"spider":"./N3RD/J/lem0107.jar;md5;7244E0B8CD771CF3C25BCC0DE24C6C2C",
|
||||
//"spider":"./N3RD/J/lem0106.jar;md5;955728E734049D4528B21660C2D3C194",
|
||||
//"spider":"./N3RD/J/lem0105.jar;md5;A94B7E584D0E27CF84F449D8566E2373",
|
||||
@ -16,7 +17,8 @@
|
||||
{"name":"雷蒙影视电视直播","type":0,"url":"https://cors.isteed.cc/https://raw.githubusercontent.com/n3rddd/CTVLive/main/live.txt","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"雷蒙影视轻量直播","type":0,"url":"https://cors.isteed.cc/https://raw.githubusercontent.com/n3rddd/CTVLive/main/litelive.m3u","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"雷蒙影视宣传片","type":0,"url":"https://cors.isteed.cc/https://raw.githubusercontent.com/n3rddd/N3RD/master/JN/EXT/LIVE/ctvpv.txt","ua":"okhttp/3.15","logo":"https://cors.isteed.cc/https://raw.githubusercontent.com/n3rddd/N3RD/master/JN/N3RD/W/ICON1.png"},
|
||||
{"name":"肥羊直播","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/tv.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/proxy/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"国内直播[今日回看]","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/tv.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png","catchup":{"type":"append","source":"?livemode=4&starttime=${(b)yyyyMMdd'T'HHmm}00.00Z&endtime=${(e)yyyyMMdd'T'HHmm}00.00Z"}},
|
||||
{"name":"国内直播[昨日回看]","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/tv.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date=DATE1SUB","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png","catchup":{"type":"append","source":"?livemode=4&starttime=${(b)yyyyMMdd'T'HHmm}00.00Z&endtime=${(e)yyyyMMdd'T'HHmm}00.00Z"}},
|
||||
{"name":"看电视呗","type":0,"url":"http://tv.850930.xyz/kdsb.txt","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"搜集","type":0,"url":"https://tv.iill.top/m3u/Gather","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"MyTV","type":0,"url":"https://tv.iill.top/m3u/MyTV","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
@ -26,10 +28,10 @@
|
||||
{"name":"YOUTUBE直播","type":0,"url":"https://raw.githubusercontent.com/n3rddd/N3RD/master/JN/EXT/JS/YTTV.txt","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"YOUTUBE音乐","type":0,"url":"http://yt.850930.xyz","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://5b0988e595225.cdn.sohucs.com/images/20190313/ad9ebfafbec640b7b41b9250156dff39.png"},
|
||||
{"name":"YOUTUBE榜单","type":0,"url":"http://yt.850930.xyz/playlist.txt","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://5b0988e595225.cdn.sohucs.com/images/20190313/ad9ebfafbec640b7b41b9250156dff39.png"},
|
||||
{"name":"B站直播","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/bililive.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/proxy/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"虎牙一起看","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/huyayqk.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/proxy/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"斗鱼一起看","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/douyuyqk.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/proxy/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"YY轮播","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/yylunbo.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/proxy/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"}
|
||||
{"name":"B站直播","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/bililive.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"虎牙一起看","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/huyayqk.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"斗鱼一起看","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/douyuyqk.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"YY轮播","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/yylunbo.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"}
|
||||
],
|
||||
|
||||
"sites":[
|
||||
@ -109,13 +111,14 @@
|
||||
|
||||
// ⇩⇩ QJ SPIDER ⇩⇩
|
||||
{"key":"csp_NanGuaQJ","name":"雷蒙影视 | 🍪南瓜(SP)","type":3,"api":"csp_NanGuaQJ","searchable":1,"quickSearch":1,"filterable":1,"ext":""},
|
||||
{"key":"csp_TTian_天天_QJ","name":"雷蒙影视 | ✈天天(SP)","type":3,"api":"csp_TTian","playerType":1,"searchable":1,"quickSearch":1,"filterable":1,"ext":"baHR0cDovL29wLnlzZHFqcy5jbg=="},
|
||||
{"key":"csp_TTian_天天_QJ","name":"雷蒙影视 | ✈天天(SP)","type":3,"api":"csp_TTian","playerType":1,"searchable":1,"quickSearch":1,"filterable":1,"ext":"baHR0cDovL3R0LnlzZHFqcy5jbg=="},
|
||||
{"key":"csp_TTian_热播_QJ","name":"雷蒙影视 | ♨热播(SP)","type":3,"api":"csp_TTian","playerType":1,"ext":"caHR0cDovL3YucmJvdHYuY24="},
|
||||
{"key":"csp_TTian_追剧_QJ","name":"雷蒙影视 | ✈追剧(SP)","type":3,"api":"csp_TTian","playerType":1,"searchable":1,"quickSearch":1,"filterable":1,"ext":"daHR0cDovL3YubGt1eXMuY24="},
|
||||
{"key":"csp_JpysQJ","name":"雷蒙影视 | 🥇️剧评(SP)","type":3,"api":"csp_JpysQJ","playerType":1,"ext":"caHR0cHM6Ly93d3cuY2Zrajg2LmNvbQ=="},
|
||||
{"key":"csp_Shark_QJ","name":"雷蒙影视 | 🌴木头(SP)","type":3,"api":"csp_Shark","playerType":1,"ext":"saHR0cDovL21pdG8ubWlub3R2LmNuL3xhYXNzZGR3d3h4bGxzeDF4fGJic3NxZGJic3NsbDI1c3g="},
|
||||
{"key":"csp_Drama_QJ","name":"雷蒙影视 | 🍟世纪(SP)","type":3,"api":"csp_Drama","playerType":2,"ext":"saHR0cDovLzExOC4yNS4xOC4yMTc6NjYzMnxURkxZV1ZKNUVHNVlCMVBMWkxWVk1HVkxCR1JJRENTV3xuajZFNUs0eVlZVDVXNFNjSjNKM3JKMnpyemNKa3BUa3wyMQ=="},
|
||||
{"key":"csp_Muou_QJ","name":"雷蒙影视 | 💫星河(SP)","type":3,"api":"csp_Muou","playerType":2,"ext":"caHR0cDovL2EubXVxaXhoLnRvcDo1NjIzfOW5leWQr+aYn+ays3w0LjEuOA=="},
|
||||
{"key":"csp_Muou_永夜_QJ","name":"雷蒙影视 | 🌙永夜(SP)","type":3,"api":"csp_Muou","playerType":2,"ext":"caHR0cDovL2FwcC55aXlpNTIxLnRvcHxZSVlJ5b2x6KeGfDQuMS44"},
|
||||
{"key":"csp_Muou_星河_QJ","name":"雷蒙影视 | 💫星河(SP)","type":3,"api":"csp_Muou","playerType":2,"ext":"caHR0cDovL2EubXVxaXhoLnRvcDo1NjIzfOW5leWQr+aYn+ays3w0LjEuOA=="},
|
||||
{"key":"csp_Xdai_荣荣_QJ","name":"雷蒙影视 | 👪荣荣(SP)","type":3,"api":"csp_Xdai","playerType":1,"ext":"caHR0cHM6Ly9qaWVrb3UtMTMxNDA1NDY5OS5jb3MuYXAtY2hvbmdxaW5nLm15cWNsb3VkLmNvbS9qaWVrb3UudHh0fEY1MUY1RDUyRDIzQ0JGMjd8RjUxRjVENTJEMjNDQkYyN3wxOTE="},
|
||||
{"key":"csp_Xdai_雨滴_QJ","name":"雷蒙影视 | 💧雨滴(SP)","type":3,"api":"csp_Xdai","playerType":1,"ext":"jaHR0cDovL2M4dzJvdjd1NXdnMnoxbzhwMjFjLmFsaXl1bmNzLmNsaWNrfGs5bzNwMmM4YjdtM3owbzh8azlvM3AyYzhiN20zejBvOHwxMDA="},
|
||||
{"key":"csp_Xdai_现代_QJ","name":"雷蒙影视 | 🛰现代(SP)","type":3,"api":"csp_Xdai","playerType":1,"ext":"caHR0cHM6Ly9hcHAuYnJvdm9kLmNvbXxzemRqd2RhcHB3Y25tZGhifHN6ZGp3ZGFwcHdjbm1kaGJ8MTE0"},
|
||||
@ -202,8 +205,17 @@
|
||||
// ⇩⇩ MULTIJAR ⇩⇩
|
||||
{"jar":"./N3RD/J/gm.jar","key":"csp_GM_爱壹帆","name":"雷蒙影视 | 🐵爱壹帆(SCRIPT)","type":3,"searchable":1,"changeable":1,"style":{"type":"rect","ratio":0.75},"api":"csp_GM","ext":{"userScript":"./EXT/userScripts/ysfp.user.js","debug":false,"webViewSettings":{"blockNetworkImage":true,"blockList":["*.png*","*.mp3*","*.css*","https://*.googletagmanager.com/*","https://*.google-analytics.com/*"]},"spider":{"homeContent":{"loadUrl":"https://m.yfsp.tv/"},"categoryContent":{"loadUrl":"https://m.yfsp.tv/list/${tid}?type=${index-0:-0}${index-1:-,0}${index-2:-,0}${index-3:-,0}${index-4:-,0}${index-5:-}"},"detailContent":{"loadUrl":"https://m.yfsp.tv/play/${id}"},"playerContent":{"loadUrl":"https://m.yfsp.tv/play/${mediaKey}?id=${episodeKey}"},"searchContent":{"loadUrl":"https://m.yfsp.tv/search"}}}},
|
||||
{"jar":"./N3RD/J/gm.jar","key":"csp_GM_注视影视","name":"雷蒙影视 | 🐵注视影视(SCRIPT)","type":3,"searchable":1,"changeable":1,"style":{"type":"rect","ratio":0.66},"api":"csp_GM","ext":{"userScript":"./EXT/userScripts/gaze.user.js","debug":false,"webViewSettings":{"blockNetworkImage":true,"blockList":["https://*.bytecdntp.com/cdn/expire-1-M/font-awesome/*","https://*.clarity.ms/*","https://gaze.run/visitorslog.php*","*.css*"]},"playUrlMatch":["https://dl-b.cloud.189.cn/corp/downloadFile.action?*","https://gaze.run/gaze_filey/pb/*.m3u8","https://*/obj/tos*"],"spider":{"homeContent":{"loadUrl":"https://gaze.run/filter"},"categoryContent":{"loadUrl":"https://gaze.run/filter"},"detailContent":{"loadUrl":"https://gaze.run/play/${id}"},"playerContent":{"loadUrl":"https://gaze.run/play/${mcid}#${path}"},"searchContent":{"loadUrl":"https://gaze.run/filter"}}}},
|
||||
{"jar":"./N3RD/J/gm.jar","key":"csp_GM_Hi视频","name":"雷蒙影视 | 🐵Hi视频(SCRIPT)","type":3,"searchable":1,"changeable":1,"style":{"type":"rect","ratio":0.71},"api":"csp_GM","ext":{"userScript":"./EXT/userScripts/hitv.user.js","debug":false,"webViewSettings":{"blockNetworkImage":true,"blockList":["https://*.google-analytics.com/*"]},"spider":{"homeContent":{"loadUrl":"https://www.upfuhn.com/column/0.html"},"categoryContent":{"loadUrl":"https://www.upfuhn.com/column/${tid}.html"},"detailContent":{"loadUrl":"https://www.upfuhn.com/play/${id}.html"},"searchContent":{"loadUrl":"https://www.upfuhn.com/search/${key}.html"}}}},
|
||||
|
||||
{"jar":"./N3RD/J/gm.jar","key":"csp_GM_Hi视频","name":"雷蒙影视 | 🐵Hi视频(SCRIPT)","type":3,"searchable":1,"changeable":1,"style":{"type":"rect","ratio":0.71},"api":"csp_GM","ext":{"userScript":"./EXT/userScripts/hitv.user.js","debug":false,"webViewSettings":{"blockNetworkImage":true,"blockList":["https://*.google-analytics.com/*"]},"spider":{"homeContent":{"loadUrl":"https://www.upfuhn.com/column/0.html"},"categoryContent":{"loadUrl":"https://www.upfuhn.com/column/${tid}.html"},"detailContent":{"loadUrl":"https://www.upfuhn.com/play/${id}-1-0.html"},"searchContent":{"loadUrl":"https://www.upfuhn.com/search/${key}.html"}}}},
|
||||
{"jar":"./N3RD/J/gm.jar","key":"csp_GM_BILFUN","name":"雷蒙影视 | 🐵BILFUN(SCRIPT)","type":3,"searchable":1,"changeable":1,"quickSearch":0,"style":{"type":"rect","ratio":0.71},"api":"csp_GM","ext":{"userScript":"./EXT/userScripts/bilfun.user.js","debug":false,"webViewSettings":{"blockNetworkImage":true,"blockList":["https://*.51.la/*","https://collect-v6.51.la/*"]},"playUrlMatch":["https://api.huohua.live/file.php?*","https://*/*.m3u8*"],"spider":{"homeContent":{"loadUrl":"https://bilfun.cc/"},"categoryContent":{"loadUrl":"https://bilfun.cc/bilfunshow/${tid}-${index0:-}-${index1:-}-${index2:-}-${index3:-}-${index4:-}-${index5:-}-${index6:-}-${pg:-1}-${index8:-}-${index9:-}-${index10:-}.html"},"detailContent":{"loadUrl":"https://bilfun.cc${id}"},"playerContent":{"loadUrl":"https://bilfun.cc${playUrl}"},"searchContent":{"loadUrl":"https://bilfun.cc${playUrl}"}}}},
|
||||
{"jar":"./N3RD/J/gm.jar","key":"csp_GM_火车太堵","name":"雷蒙影视 | 🐵火车太堵(SCRIPT)","type":3,"searchable":1,"changeable":1,"quickSearch":0,"style":{"type":"rect","ratio":0.71},"api":"csp_GM","ext":{"userScript":"./EXT/userScripts/huochetaidu.user.js","debug":false,"webViewSettings":{"blockNetworkImage":true,"blockList":["https://hm.baidu.com"]},"playUrlMatch":["https://api.huohua.live/file.php?*","https://*/*.m3u8*"],"spider":{"homeContent":{"loadUrl":"https://www.tdgo.shop/"},"categoryContent":{"loadUrl":"https://www.tdgo.shop/vodshow/${tid}-${index0:-}-${index1:-}-${index2:-}-${index3:-}-${index4:-}-${index5:-}-${index6:-}-${pg:-1}-${index8:-}-${index9:-}-${index10:-}.html"},"detailContent":{"loadUrl":"https://www.tdgo.shop${id}"},"playerContent":{"loadUrl":"https://www.tdgo.shop${playUrl}"},"searchContent":{"loadUrl":"https://www.tdgo.shop/vodsearch/${key}----------${pg:-1}---.html"}}}},
|
||||
{"jar":"./N3RD/J/gm.jar","key":"csp_GM_饭团影视","name":"雷蒙影视 | 🐵饭团影视(SCRIPT)","type":3,"searchable":1,"changeable":1,"quickSearch":0,"style":{"type":"rect","ratio":0.71},"api":"csp_GM","ext":{"userScript":"./EXT/userScripts/fantuan.user.js","debug":false,"webViewSettings":{"blockNetworkImage":true,"blockList":["https://hm.baidu.com"]},"playUrlMatch":["https://api.huohua.live/file.php?*","https://*/*.m3u8*"],"spider":{"homeContent":{"loadUrl":"https://www.fantuan.vip/"},"categoryContent":{"loadUrl":"https://www.fantuan.vip/vodshow/${tid}-${index0:-}-${index1:-}-${index2:-}-${index3:-}-${index4:-}-${index5:-}-${index6:-}-${pg:-1}-${index8:-}-${index9:-}-${index10:-}.html"},"detailContent":{"loadUrl":"https://www.fantuan.vip${id}"},"playerContent":{"loadUrl":"https://www.fantuan.vip${playUrl}"},"searchContent":{"loadUrl":"https://www.fantuan.vip/vodsearch/${key}----------${pg:-1}---.html"}}}},
|
||||
{"jar":"./N3RD/J/gm.jar","key":"csp_GM_皮皮影视","name":"雷蒙影视 | 🐵皮皮影视(SCRIPT)","type":3,"searchable":1,"changeable":1,"quickSearch":0,"style":{"type":"rect","ratio":0.71},"api":"csp_GM","ext":{"userScript":"./EXT/userScripts/pipiys.user.js","debug":false,"webViewSettings":{"blockNetworkImage":true,"blockList":["https://hm.baidu.com"]},"playUrlMatch":["https://api.huohua.live/file.php?*","https://*/*.m3u8*"],"spider":{"homeContent":{"loadUrl":"https://www.pipiys1.com/"},"categoryContent":{"loadUrl":"https://www.pipiys1.com/vodshow/${tid}-${index0:-}-${index1:-}-${index2:-}-${index3:-}-${index4:-}-${index5:-}-${index6:-}-${pg:-1}-${index8:-}-${index9:-}-${index10:-}.html"},"detailContent":{"loadUrl":"https://www.pipiys1.com${id}"},"playerContent":{"loadUrl":"https://www.pipiys1.com${playUrl}"},"searchContent":{"loadUrl":"https://www.pipiys1.com/vodsearch/${key}----------${pg:-1}---.html"}}}},
|
||||
{"jar":"./N3RD/J/gm.jar","key":"csp_GM_FreeOK","name":"雷蒙影视 | 🐵FreeOK(SCRIPT)","type":3,"searchable":1,"changeable":1,"quickSearch":0,"style":{"type":"rect","ratio":0.71},"api":"csp_GM","ext":{"userScript":"./EXT/userScripts/freeok.user.js","debug":false,"webViewSettings":{"blockNetworkImage":true,"blockList":["https://hm.baidu.com"]},"playUrlMatch":["https://api.huohua.live/file.php?*","https://*/*.m3u8*"],"spider":{"homeContent":{"loadUrl":"https://www.freeok.la/"},"categoryContent":{"loadUrl":"https://www.freeok.la/vodshow/${tid}-${index0:-}-${index1:-}-${index2:-}-${index3:-}-${index4:-}-${index5:-}-${index6:-}-${pg:-1}-${index8:-}-${index9:-}-${index10:-}.html"},"detailContent":{"loadUrl":"https://www.freeok.la${id}"},"playerContent":{"loadUrl":"https://www.freeok.la${playUrl}"},"searchContent":{"loadUrl":"https://www.freeok.la/vodsearch/${key}----------${pg:-1}---.html"}}}},
|
||||
{"jar":"./N3RD/J/gm.jar","key":"csp_GM_皮皮蛋影视","name":"雷蒙影视 | 🐵皮皮蛋影视(SCRIPT)","type":3,"searchable":1,"changeable":1,"quickSearch":0,"style":{"type":"rect","ratio":0.71},"api":"csp_GM","ext":{"userScript":"./EXT/userScripts/ppdys.user.js","debug":false,"webViewSettings":{"blockNetworkImage":true,"blockList":["https://hm.baidu.com"]},"playUrlMatch":["https://api.huohua.live/file.php?*","https://*/*.m3u8*"],"spider":{"homeContent":{"loadUrl":"https://www.ppdys.me/"},"categoryContent":{"loadUrl":"https://www.ppdys.me/vodshow/${tid}-${index0:-}-${index1:-}-${index2:-}-${index3:-}-${index4:-}-${index5:-}-${index6:-}-${pg:-1}-${index8:-}-${index9:-}-${index10:-}.html"},"detailContent":{"loadUrl":"https://www.ppdys.me${id}"},"playerContent":{"loadUrl":"https://www.ppdys.me${playUrl}"},"searchContent":{"loadUrl":"https://www.ppdys.me/vodsearch/${key}----------${pg:-1}---.html"}}}},
|
||||
{"jar":"./N3RD/J/gm.jar","key":"csp_GM_蛋蛋兔","name":"雷蒙影视 | 🐵蛋蛋兔(SCRIPT)","type":3,"searchable":1,"changeable":1,"quickSearch":0,"style":{"type":"rect","ratio":0.71},"api":"csp_GM","ext":{"userScript":"./EXT/userScripts/dandantu.user.js","debug":false,"webViewSettings":{"blockNetworkImage":true,"blockList":["https://hm.baidu.com"]},"playUrlMatch":["https://api.huohua.live/file.php?*","https://*/*.m3u8*"],"spider":{"homeContent":{"loadUrl":"https://www.dandantu.cc/"},"categoryContent":{"loadUrl":"https://www.dandantu.cc/vodshow/${tid}-${index0:-}-${index1:-}-${index2:-}-${index3:-}-${index4:-}-${index5:-}-${index6:-}-${pg:-1}-${index8:-}-${index9:-}-${index10:-}.html"},"detailContent":{"loadUrl":"https://www.dandantu.cc${id}"},"playerContent":{"loadUrl":"https://www.dandantu.cc${playUrl}"},"searchContent":{"loadUrl":"https://www.dandantu.cc/vodsearch/${key}----------${pg:-1}---.html"}}}},
|
||||
{"jar":"./N3RD/J/gm.jar","key":"csp_GM_剧爷爷","name":"雷蒙影视 | 🐵剧爷爷(SCRIPT)","type":3,"searchable":1,"changeable":1,"quickSearch":0,"style":{"type":"rect","ratio":0.71},"api":"csp_GM","ext":{"userScript":"./EXT/userScripts/juyeye.user.js","debug":false,"webViewSettings":{"blockNetworkImage":true,"blockList":["https://hm.baidu.com"]},"playUrlMatch":["https://api.huohua.live/file.php?*","https://*/*.m3u8*"],"spider":{"homeContent":{"loadUrl":"https://www.juyeye.cc/"},"categoryContent":{"loadUrl":"https://www.juyeye.cc/vodshow/${tid}-${index0:-}-${index1:-}-${index2:-}-${index3:-}-${index4:-}-${index5:-}-${index6:-}-${pg:-1}-${index8:-}-${index9:-}-${index10:-}.html"},"detailContent":{"loadUrl":"https://www.juyeye.cc${id}"},"playerContent":{"loadUrl":"https://www.juyeye.cc${playUrl}"},"searchContent":{"loadUrl":"https://www.juyeye.cc/vodsearch/${key}----------${pg:-1}---.html"}}}},
|
||||
{"jar":"./N3RD/J/gm.jar","key":"csp_GM_番茄影视","name":"雷蒙影视 | 🐵番茄影视(SCRIPT)","type":3,"searchable":1,"changeable":1,"quickSearch":0,"style":{"type":"rect","ratio":0.71},"api":"csp_GM","ext":{"userScript":"./EXT/userScripts/yirenmeng.user.js","debug":false,"webViewSettings":{"blockNetworkImage":true,"blockList":["https://hm.baidu.com"]},"playUrlMatch":["https://api.huohua.live/file.php?*","https://*/*.m3u8*"],"spider":{"homeContent":{"loadUrl":"https://www.yirenmeng.com/"},"categoryContent":{"loadUrl":"https://www.yirenmeng.com/vodshow/${tid}-${index0:-}-${index1:-}-${index2:-}-${index3:-}-${index4:-}-${index5:-}-${index6:-}-${pg:-1}-${index8:-}-${index9:-}-${index10:-}.html"},"detailContent":{"loadUrl":"https://www.yirenmeng.com${id}"},"playerContent":{"loadUrl":"https://www.yirenmeng.com${playUrl}"},"searchContent":{"loadUrl":"https://www.yirenmeng.com/vodsearch/${key}----------${pg:-1}---.html"}}}},
|
||||
|
||||
|
||||
// ⇩⇩ T4 ⇩⇩
|
||||
{"key":"T4_CNTV","name":"雷蒙影视 |4️⃣CNTV(T4)","type":4,"api":"https://azure.leuse.top/vod/cntv","searchable":0,"filterable":0},
|
||||
@ -212,6 +224,7 @@
|
||||
{"key":"T4_欧乐","name":"雷蒙影视 | 4️⃣欧乐(T4)","type":4,"api":"https://spider.doube.eu.org/spider?site=OleVod","searchable":1,"quickSearch":1,"filterable":0,"changeable":0},
|
||||
{"key":"T4_嗨视","name":"雷蒙影视 | 4️⃣嗨视(T4)","type":4,"api":"https://spider.doube.eu.org/spider?site=UpFuHn","searchable":1,"quickSearch":1,"filterable":0,"changeable":0},
|
||||
{"key":"T4_爱瓜","name":"雷蒙影视 | 4️⃣爱瓜(T4)","type":4,"api":"https://spider.doube.eu.org/spider?site=AiGuaTV","searchable":1,"quickSearch":1,"filterable":0,"changeable":0},
|
||||
{"key":"T4_皮虾","name":"雷蒙影视 | 4️⃣皮虾(T4)","type":4,"api":"https://py.doube.eu.org/spider?site=PPXYs","searchable":1,"quickSearch":1,"filterable":0,"changeable":0},
|
||||
{"key":"T4_比特","name":"雷蒙影视 | 4️⃣比特(T4)","type":4,"api":"https://json.doube.eu.org/app/index.php?site=bttwoo","searchable":1,"quickSearch":1,"filterable":0,"changeable":0},
|
||||
{"key":"T4_木木","name":"雷蒙影视 | 4️⃣木木(T4)","type":4,"api":"http://jg.zhangqun66.com/225.php","searchable":1,"quickSearch":1,"filterable":0},
|
||||
{"key":"T4_金鹰","name":"雷蒙影视 | 4️⃣金鹰(T4)","type":4,"api":"http://jg.zhangqun66.com/jy.php","searchable":1,"quickSearch":1,"filterable":0},
|
||||
|
12
JN/lemj.json
@ -18,8 +18,8 @@
|
||||
{"name":"雷蒙影视电视直播","type":0,"url":"https://cors.isteed.cc/https://raw.githubusercontent.com/n3rddd/CTVLive/main/live.txt","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"雷蒙影视轻量直播","type":0,"url":"https://cors.isteed.cc/https://raw.githubusercontent.com/n3rddd/CTVLive/main/litelive.m3u","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"雷蒙影视宣传片","type":0,"url":"https://cors.isteed.cc/https://raw.githubusercontent.com/n3rddd/N3RD/master/JN/EXT/LIVE/ctvpv.txt","ua":"okhttp/3.15","logo":"https://cors.isteed.cc/https://raw.githubusercontent.com/n3rddd/N3RD/master/JN/N3RD/W/ICON1.png"},
|
||||
{"name":"肥羊直播","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/tv.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/proxy/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"看电视呗","type":0,"url":"http://tv.850930.xyz/kdsb.txt","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"国内直播[今日回看]","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/tv.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png","catchup":{"type":"append","source":"?livemode=4&starttime=${(b)yyyyMMdd'T'HHmm}00.00Z&endtime=${(e)yyyyMMdd'T'HHmm}00.00Z"}},
|
||||
{"name":"国内直播[昨日回看]","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/tv.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date=DATE1SUB","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png","catchup":{"type":"append","source":"?livemode=4&starttime=${(b)yyyyMMdd'T'HHmm}00.00Z&endtime=${(e)yyyyMMdd'T'HHmm}00.00Z"}},
|
||||
{"name":"搜集","type":0,"url":"https://tv.iill.top/m3u/Gather","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"MyTV","type":0,"url":"https://tv.iill.top/m3u/MyTV","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"主播","type":0,"url":"https://tv.iill.top/m3u/Live","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
@ -28,10 +28,10 @@
|
||||
{"name":"YOUTUBE直播","type":0,"url":"https://raw.githubusercontent.com/n3rddd/N3RD/master/JN/EXT/JS/YTTV.txt","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"YOUTUBE音乐","type":0,"url":"http://yt.850930.xyz","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://5b0988e595225.cdn.sohucs.com/images/20190313/ad9ebfafbec640b7b41b9250156dff39.png"},
|
||||
{"name":"YOUTUBE榜单","type":0,"url":"http://yt.850930.xyz/playlist.txt","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://5b0988e595225.cdn.sohucs.com/images/20190313/ad9ebfafbec640b7b41b9250156dff39.png"},
|
||||
{"name":"B站直播","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/bililive.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/proxy/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"虎牙一起看","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/huyayqk.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/proxy/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"斗鱼一起看","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/douyuyqk.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/proxy/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"YY轮播","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/yylunbo.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/proxy/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"}
|
||||
{"name":"B站直播","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/bililive.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"虎牙一起看","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/huyayqk.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"斗鱼一起看","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/douyuyqk.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"YY轮播","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/yylunbo.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"}
|
||||
],
|
||||
|
||||
"sites":[
|
||||
|
@ -11,7 +11,15 @@
|
||||
{"name":"雷蒙影视电视直播","type":0,"url":"https://cors.isteed.cc/https://raw.githubusercontent.com/n3rddd/CTVLive/main/live.txt","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"雷蒙影视轻量直播","type":0,"url":"https://cors.isteed.cc/https://raw.githubusercontent.com/n3rddd/CTVLive/main/litelive.m3u","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"雷蒙影视宣传片","type":0,"url":"https://cors.isteed.cc/https://raw.githubusercontent.com/n3rddd/N3RD/master/JN/EXT/LIVE/ctvpv.txt","ua":"okhttp/3.15","logo":"https://cors.isteed.cc/https://raw.githubusercontent.com/n3rddd/N3RD/master/JN/N3RD/W/ICON1.png"},
|
||||
{"name":"肥羊直播","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/tv.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/proxy/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"国内直播[今日回看]","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/tv.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png","catchup":{"type":"append","source":"?livemode=4&starttime=${(b)yyyyMMdd'T'HHmm}00.00Z&endtime=${(e)yyyyMMdd'T'HHmm}00.00Z"}},
|
||||
{"name":"国内直播[昨日回看]","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/tv.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date=DATE1SUB","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png","catchup":{"type":"append","source":"?livemode=4&starttime=${(b)yyyyMMdd'T'HHmm}00.00Z&endtime=${(e)yyyyMMdd'T'HHmm}00.00Z"}},
|
||||
{"name":"CHINA IPTV","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/ciptv.m3u","ua":"okhttp/3.15..","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png","catchup":{"type":"append","source":"?playseek=${(b)yyyyMMddHHmm}00-${(e)yyyyMMddHHmm}00"}},
|
||||
{"name":"CHINA IPTV(-1天回看)","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/ciptv.m3u","ua":"okhttp/3.15..","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date=DATE1SUB","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png","catchup":{"type":"append","source":"?playseek=${(b)yyyyMMddHHmm}00-${(e)yyyyMMddHHmm}00"}},
|
||||
{"name":"CHINA IPTV(-2天回看)","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/ciptv.m3u","ua":"okhttp/3.15..","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date=DATE2SUB","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png","catchup":{"type":"append","source":"?playseek=${(b)yyyyMMddHHmm}00-${(e)yyyyMMddHHmm}00"}},
|
||||
{"name":"CHINA IPTV(-3天回看)","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/ciptv.m3u","ua":"okhttp/3.15..","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date=DATE3SUB","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png","catchup":{"type":"append","source":"?playseek=${(b)yyyyMMddHHmm}00-${(e)yyyyMMddHHmm}00"}},
|
||||
{"name":"CHINA IPTV(-4天回看)","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/ciptv.m3u","ua":"okhttp/3.15..","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date=DATE4SUB","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png","catchup":{"type":"append","source":"?playseek=${(b)yyyyMMddHHmm}00-${(e)yyyyMMddHHmm}00"}},
|
||||
{"name":"CHINA IPTV(-5天回看)","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/ciptv.m3u","ua":"okhttp/3.15..","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date=DATE5SUB","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png","catchup":{"type":"append","source":"?playseek=${(b)yyyyMMddHHmm}00-${(e)yyyyMMddHHmm}00"}},
|
||||
{"name":"CHINA IPTV(-6天回看)","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/ciptv.m3u","ua":"okhttp/3.15..","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date=DATE6SUB","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png","catchup":{"type":"append","source":"?playseek=${(b)yyyyMMddHHmm}00-${(e)yyyyMMddHHmm}00"}},
|
||||
{"name":"看电视呗","type":0,"url":"http://tv.850930.xyz/kdsb.txt","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"搜集","type":0,"url":"https://tv.iill.top/m3u/Gather","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"MyTV","type":0,"url":"https://tv.iill.top/m3u/MyTV","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
@ -21,10 +29,10 @@
|
||||
{"name":"YOUTUBE直播","type":0,"url":"https://raw.githubusercontent.com/n3rddd/N3RD/master/JN/EXT/JS/YTTV.txt","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"YOUTUBE音乐","type":0,"url":"http://yt.850930.xyz","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://5b0988e595225.cdn.sohucs.com/images/20190313/ad9ebfafbec640b7b41b9250156dff39.png"},
|
||||
{"name":"YOUTUBE榜单","type":0,"url":"http://yt.850930.xyz/playlist.txt","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://5b0988e595225.cdn.sohucs.com/images/20190313/ad9ebfafbec640b7b41b9250156dff39.png"},
|
||||
{"name":"B站直播","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/bililive.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/proxy/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"虎牙一起看","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/huyayqk.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/proxy/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"斗鱼一起看","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/douyuyqk.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/proxy/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"YY轮播","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/yylunbo.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/proxy/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"}
|
||||
{"name":"B站直播","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/bililive.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"虎牙一起看","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/huyayqk.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"斗鱼一起看","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/douyuyqk.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"YY轮播","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/yylunbo.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"}
|
||||
],
|
||||
|
||||
"sites":[
|
||||
|
@ -12,7 +12,15 @@
|
||||
{"name":"雷蒙影视电视直播","type":0,"url":"https://cors.isteed.cc/https://raw.githubusercontent.com/n3rddd/CTVLive/main/live.txt","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"雷蒙影视轻量直播","type":0,"url":"https://cors.isteed.cc/https://raw.githubusercontent.com/n3rddd/CTVLive/main/litelive.m3u","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"雷蒙影视宣传片","type":0,"url":"https://cors.isteed.cc/https://raw.githubusercontent.com/n3rddd/N3RD/master/JN/EXT/LIVE/ctvpv.txt","ua":"okhttp/3.15","logo":"https://cors.isteed.cc/https://raw.githubusercontent.com/n3rddd/N3RD/master/JN/N3RD/W/ICON1.png"},
|
||||
{"name":"肥羊直播","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/tv.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/proxy/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"国内直播[今日回看]","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/tv.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png","catchup":{"type":"append","source":"?livemode=4&starttime=${(b)yyyyMMdd'T'HHmm}00.00Z&endtime=${(e)yyyyMMdd'T'HHmm}00.00Z"}},
|
||||
{"name":"国内直播[昨日回看]","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/tv.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date=DATE1SUB","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png","catchup":{"type":"append","source":"?livemode=4&starttime=${(b)yyyyMMdd'T'HHmm}00.00Z&endtime=${(e)yyyyMMdd'T'HHmm}00.00Z"}},
|
||||
{"name":"CHINA IPTV","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/ciptv.m3u","ua":"okhttp/3.15..","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png","catchup":{"type":"append","source":"?playseek=${(b)yyyyMMddHHmm}00-${(e)yyyyMMddHHmm}00"}},
|
||||
{"name":"CHINA IPTV(-1天回看)","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/ciptv.m3u","ua":"okhttp/3.15..","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date=DATE1SUB","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png","catchup":{"type":"append","source":"?playseek=${(b)yyyyMMddHHmm}00-${(e)yyyyMMddHHmm}00"}},
|
||||
{"name":"CHINA IPTV(-2天回看)","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/ciptv.m3u","ua":"okhttp/3.15..","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date=DATE2SUB","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png","catchup":{"type":"append","source":"?playseek=${(b)yyyyMMddHHmm}00-${(e)yyyyMMddHHmm}00"}},
|
||||
{"name":"CHINA IPTV(-3天回看)","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/ciptv.m3u","ua":"okhttp/3.15..","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date=DATE3SUB","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png","catchup":{"type":"append","source":"?playseek=${(b)yyyyMMddHHmm}00-${(e)yyyyMMddHHmm}00"}},
|
||||
{"name":"CHINA IPTV(-4天回看)","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/ciptv.m3u","ua":"okhttp/3.15..","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date=DATE4SUB","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png","catchup":{"type":"append","source":"?playseek=${(b)yyyyMMddHHmm}00-${(e)yyyyMMddHHmm}00"}},
|
||||
{"name":"CHINA IPTV(-5天回看)","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/ciptv.m3u","ua":"okhttp/3.15..","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date=DATE5SUB","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png","catchup":{"type":"append","source":"?playseek=${(b)yyyyMMddHHmm}00-${(e)yyyyMMddHHmm}00"}},
|
||||
{"name":"CHINA IPTV(-6天回看)","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/ciptv.m3u","ua":"okhttp/3.15..","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date=DATE6SUB","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png","catchup":{"type":"append","source":"?playseek=${(b)yyyyMMddHHmm}00-${(e)yyyyMMddHHmm}00"}},
|
||||
{"name":"看电视呗","type":0,"url":"http://tv.850930.xyz/kdsb.txt","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"搜集","type":0,"url":"https://tv.iill.top/m3u/Gather","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"MyTV","type":0,"url":"https://tv.iill.top/m3u/MyTV","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
@ -22,10 +30,10 @@
|
||||
{"name":"YOUTUBE直播","type":0,"url":"https://raw.githubusercontent.com/n3rddd/N3RD/master/JN/EXT/JS/YTTV.txt","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"YOUTUBE音乐","type":0,"url":"http://yt.850930.xyz","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://5b0988e595225.cdn.sohucs.com/images/20190313/ad9ebfafbec640b7b41b9250156dff39.png"},
|
||||
{"name":"YOUTUBE榜单","type":0,"url":"http://yt.850930.xyz/playlist.txt","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://5b0988e595225.cdn.sohucs.com/images/20190313/ad9ebfafbec640b7b41b9250156dff39.png"},
|
||||
{"name":"B站直播","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/bililive.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/proxy/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"虎牙一起看","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/huyayqk.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/proxy/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"斗鱼一起看","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/douyuyqk.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/proxy/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"YY轮播","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/yylunbo.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/proxy/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"}
|
||||
{"name":"B站直播","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/bililive.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"虎牙一起看","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/huyayqk.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"斗鱼一起看","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/douyuyqk.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"YY轮播","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/yylunbo.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"}
|
||||
],
|
||||
|
||||
"sites":[
|
||||
|
@ -13,7 +13,8 @@
|
||||
{"name":"雷蒙影视电视直播","type":0,"url":"https://cors.isteed.cc/https://raw.githubusercontent.com/n3rddd/CTVLive/main/live.txt","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"雷蒙影视轻量直播","type":0,"url":"https://cors.isteed.cc/https://raw.githubusercontent.com/n3rddd/CTVLive/main/litelive.m3u","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"雷蒙影视宣传片","type":0,"url":"https://cors.isteed.cc/https://raw.githubusercontent.com/n3rddd/N3RD/master/JN/EXT/LIVE/ctvpv.txt","ua":"okhttp/3.15","logo":"https://cors.isteed.cc/https://raw.githubusercontent.com/n3rddd/N3RD/master/JN/N3RD/W/ICON1.png"},
|
||||
{"name":"肥羊直播","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/tv.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/proxy/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"国内直播[今日回看]","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/tv.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png","catchup":{"type":"append","source":"?livemode=4&starttime=${(b)yyyyMMdd'T'HHmm}00.00Z&endtime=${(e)yyyyMMdd'T'HHmm}00.00Z"}},
|
||||
{"name":"国内直播[昨日回看]","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/tv.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date=DATE1SUB","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png","catchup":{"type":"append","source":"?livemode=4&starttime=${(b)yyyyMMdd'T'HHmm}00.00Z&endtime=${(e)yyyyMMdd'T'HHmm}00.00Z"}},
|
||||
{"name":"看电视呗","type":0,"url":"http://tv.850930.xyz/kdsb.txt","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"搜集","type":0,"url":"https://tv.iill.top/m3u/Gather","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"MyTV","type":0,"url":"https://tv.iill.top/m3u/MyTV","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
@ -23,10 +24,10 @@
|
||||
{"name":"YOUTUBE直播","type":0,"url":"https://raw.githubusercontent.com/n3rddd/N3RD/master/JN/EXT/JS/YTTV.txt","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"YOUTUBE音乐","type":0,"url":"http://yt.850930.xyz","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://5b0988e595225.cdn.sohucs.com/images/20190313/ad9ebfafbec640b7b41b9250156dff39.png"},
|
||||
{"name":"YOUTUBE榜单","type":0,"url":"http://yt.850930.xyz/playlist.txt","ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://5b0988e595225.cdn.sohucs.com/images/20190313/ad9ebfafbec640b7b41b9250156dff39.png"},
|
||||
{"name":"B站直播","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/bililive.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/proxy/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"虎牙一起看","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/huyayqk.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/proxy/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"斗鱼一起看","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/douyuyqk.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/proxy/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"YY轮播","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/yylunbo.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/proxy/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"}
|
||||
{"name":"B站直播","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/bililive.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"虎牙一起看","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/huyayqk.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"斗鱼一起看","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/douyuyqk.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"},
|
||||
{"name":"YY轮播","type":0,"url":"http://127.0.0.1:10079/c/3600/null/http://127.0.0.1:35456/yylunbo.m3u","ua":"okhttp/3.15","epg":"http://127.0.0.1:10079/p/0/null/http://epg.112114.xyz/?ch={name}&date={date}","logo":"http://127.0.0.1:10079/p/0/proxy/https://epg.112114.xyz/logo/{name}.png"}
|
||||
],
|
||||
|
||||
"sites":[
|
||||
|
BIN
JN/雷蒙影视.bmp
Before Width: | Height: | Size: 174 KiB After Width: | Height: | Size: 198 KiB |
BIN
JN/雷蒙影视JS.bmp
Before Width: | Height: | Size: 1.3 MiB After Width: | Height: | Size: 1.3 MiB |
BIN
JN/雷蒙影视VOD.bmp
Before Width: | Height: | Size: 64 KiB After Width: | Height: | Size: 65 KiB |
BIN
JN/雷蒙影视WP.bmp
Before Width: | Height: | Size: 154 KiB After Width: | Height: | Size: 162 KiB |