Update edupage.user.js
This commit is contained in:
parent
0a7e13a00c
commit
7498053f6b
@ -1,7 +1,7 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name Edupage H4x
|
// @name Edupage H4x
|
||||||
// @namespace https://brn.systems
|
// @namespace https://brn.systems
|
||||||
// @version 0.2.16
|
// @version 0.2.17
|
||||||
// @copyright Can be found at https://git.brn.systems/BRNSystems/Userscripts
|
// @copyright Can be found at https://git.brn.systems/BRNSystems/Userscripts
|
||||||
// @description Gives you a bit more options on EduPage, some are broken
|
// @description Gives you a bit more options on EduPage, some are broken
|
||||||
// @author BRNSystems
|
// @author BRNSystems
|
||||||
@ -85,6 +85,10 @@
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function custompost(url, data, success, dataType, eqav, oldpost){
|
||||||
|
oldpost(url, data, success, dataType, unsafeWindow.maxEqav);
|
||||||
|
}
|
||||||
|
|
||||||
function oninit(){
|
function oninit(){
|
||||||
|
|
||||||
GM_registerMenuCommand('Settings', () => {
|
GM_registerMenuCommand('Settings', () => {
|
||||||
@ -215,6 +219,11 @@
|
|||||||
if (typeof unsafeWindow.barEncLink === 'function') {
|
if (typeof unsafeWindow.barEncLink === 'function') {
|
||||||
unsafeWindow.barEncLink = modifiedbarEncLink;
|
unsafeWindow.barEncLink = modifiedbarEncLink;
|
||||||
unsafeWindow.AscMobileAppVersion = "69420";
|
unsafeWindow.AscMobileAppVersion = "69420";
|
||||||
|
var edupost = unsafeWindow.$j.post;
|
||||||
|
function newpost(url, data, success, dataType, eqav){
|
||||||
|
edupost(url, data, success, dataType, 7);
|
||||||
|
}
|
||||||
|
unsafeWindow.$j.post = newpost;
|
||||||
console.log("barEncLink overriden successfully.");
|
console.log("barEncLink overriden successfully.");
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
Loading…
Reference in New Issue
Block a user