2017-09-24 01:54:46 +02:00
|
|
|
|
if(Debug.debug)
|
|
|
|
|
console.log("\n\n\n\n\n\n ——— Sᴛλʀᴛɪɴɢ Uʟᴛʀᴀᴡɪᴅɪꜰʏ ———\n << ʟᴏᴀᴅɪɴɢ ᴍᴀɪɴ ꜰɪʟᴇ >>\n\n\n\n");
|
2017-04-27 20:03:36 +02:00
|
|
|
|
|
2017-12-02 21:09:08 +01:00
|
|
|
|
// load all settings from localStorage:
|
2017-01-04 23:23:41 +01:00
|
|
|
|
|
2016-11-16 19:52:09 +01:00
|
|
|
|
|
2017-09-24 01:54:46 +02:00
|
|
|
|
// start autoar and setup everything
|
2016-11-16 19:52:09 +01:00
|
|
|
|
|
2017-12-02 21:09:08 +01:00
|
|
|
|
|
2016-10-16 13:13:34 +02:00
|
|
|
|
$(document).ready(function() {
|
2017-09-24 01:54:46 +02:00
|
|
|
|
if(Debug.debug)
|
|
|
|
|
console.log("uw::document.ready | document is ready. Starting ar script ...");
|
|
|
|
|
//
|
2017-12-02 21:09:08 +01:00
|
|
|
|
|
|
|
|
|
if(SitesConf.getMode(window.location.hostname) == "blacklist" ){
|
|
|
|
|
if(Debug.debug)
|
|
|
|
|
console.log("uw::document.ready | site", window.location.hostname, "is blacklisted.");
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( ExtensionConf.getMode() == "none" ){
|
|
|
|
|
if(Debug.debug)
|
|
|
|
|
console.log("uw::document.ready | Extension is soft-disabled via popup");
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if( ExtensionConf.getMode() == "whitelist" && SitesConf.getMode(window.location.hostname) != "whitelist"){
|
|
|
|
|
if(Debug.debug)
|
|
|
|
|
console.log("uw::document.ready | extension is set to run on whitelisted sites only, but site ", window.location.hostname, "is not on whitelist.");
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-24 01:54:46 +02:00
|
|
|
|
ArDetect.arSetup();
|
2017-01-02 17:45:51 +01:00
|
|
|
|
|
2017-11-13 22:35:04 +01:00
|
|
|
|
|
|
|
|
|
document.addEventListener("mozfullscreenchange", function( event ) {
|
|
|
|
|
if(FullScreenDetect.isFullScreen()){
|
|
|
|
|
// full screen is on
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
Resizer.reset();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2017-09-24 01:54:46 +02:00
|
|
|
|
});
|