NGAL_MutationDetective

Detects DOM changes of Neverwinter Gateway, and triggers appropriate functions

لا ينبغي أن لا يتم تثبيت هذا السكريت مباشرة. هو مكتبة لسكبتات لتشمل مع التوجيه الفوقية // @require https://update.greasyfork.org/scripts/10349/56139/NGAL_MutationDetective.js

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

/*** Mutation Detective ***/
var ngaMDTarget = document.querySelector('body');
var ngaPage = [
    ['Login',		'.login-page div#form input', ngaLoginPage], //#content_login - causes errors!!!
    ['Dungeons',	'#content_dungeons'],
    ['Hero',		'#content_charactersheet'],
    ['Inventory',	'#content_inventory'],
    ['Professions', '#content_professions'],
    ['AH',			'#content_auction'],
    ['ZEX',			'#content_exchange'],
    ['Guild',		'#content_guild'],
    ['Mail',		'#content_mail']
];
ngaMDoptions = {'childList': true, 'subtree': true};
var ngaMD = new MutationObserver(function(allmutations) {
    allmutations.map(function(mr) {
        ngaPage.forEach(function testPage(pagedata) {
            var node2check = document.querySelector(pagedata[1]);
//            var attr2check = node2check.getAttribute('ngAdvanced');
            if (node2check){
//                console.log(pagedata[0] + ' page detected.');
                if(pagedata[2]){pagedata[2]();}
//                else {console.log('No defined function for ' + pagedata[0]);}
            }
        });
    });
});
    
function ngaMDGo() {ngaMD.observe(ngaMDTarget, ngaMDoptions);console.log ('Mutation observer ngaMD initiated');}
function ngaMDStop() {ngaMD.disconnect();console.log ('Mutation observer ngaMD stopped');}
/** EndOf Mutation Observer**/