Greasy Fork is available in English.

电信网上大学自由学

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

< Feedback on 电信网上大学自由学

Review: Good - script works

§
Posted: 02.09.2023

参考了你的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;
});

Post reply

Sign in to post a reply.