Greasy Fork is available in English.

电信网上大学自由学

去除单标签页播放限制、顺序观看限制、考试页面复制粘贴限制

< 电信网上大学自由学についてのフィードバック

レート:良 – スクリプトは良好に動作する

§
投稿日: 2023/09/02

参考了你的removeVideoLock函数,非常感谢。
不过章节顺序限制应该是由window.app._modules['study/course/detail--???'].store.models.course.data.courseChapters[?].learnSequence控制的,把这个置为null才可以解除顺序限制,里面的应该只是控制显示锁定。
let id = Object.keys(window.app._modules).find(value => value.startsWith('study/course/detail--'));
window.app._modules[id].store.models.course.data.courseChapters.forEach(function(Chapter){
if(Chapter.learnSequence) Chapter.learnSequence = null;
});

返信を投稿

返信を投稿するにはログインしてください。