mirror of
https://github.com/FlamedDogo99/EaglerMobile.git
synced 2024-11-09 05:56:04 -08:00
Compare commits
2 Commits
756701b62d
...
c2acc1bb4e
Author | SHA1 | Date | |
---|---|---|---|
|
c2acc1bb4e | ||
|
ef03fcb4b2 |
|
@ -6,15 +6,22 @@
|
|||
// @downloadURL https://raw.githubusercontent.com/FlamedDogo99/EaglerMobile/main/eaglermobile.user.js
|
||||
// @license Apache License 2.0 - http://www.apache.org/licenses/
|
||||
// @match https://eaglercraft.com/mc/*
|
||||
// @version 3.0.5b
|
||||
// @version 3.0.6
|
||||
// @updateURL https://raw.githubusercontent.com/FlamedDogo99/EaglerMobile/main/eaglermobile.user.js
|
||||
// @run-at document-start
|
||||
// @grant none
|
||||
// ==/UserScript==
|
||||
|
||||
// Removed brainless unsafeWindow
|
||||
console.log("Eagler Mobile v3.0.5b")
|
||||
// TODO: remove the mobile check is implement the dynamic enabling and disabling of individual features
|
||||
console.log("Eagler Mobile v3.0.6");
|
||||
// Check for object defined by most userscript applications, and run the script in the page context if so
|
||||
|
||||
if (typeof GM_info !== "undefined") {
|
||||
location.href = "javascript:(" + encodeURI(main) + ")();";
|
||||
} else {
|
||||
main();
|
||||
}
|
||||
// TODO: remove the mobile check and implement the dynamic enabling and disabling of individual features
|
||||
function main() {
|
||||
function isMobile() {
|
||||
try {
|
||||
document.createEvent("TouchEvent");
|
||||
|
@ -863,3 +870,4 @@ customStyle.textContent = `
|
|||
}
|
||||
`;
|
||||
document.documentElement.appendChild(customStyle);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user