Greasy Fork is available in English.

MoM Test Lib

Just a test

ეს სკრიპტი არ უნდა იყოს პირდაპირ დაინსტალირებული. ეს ბიბლიოთეკაა, სხვა სკრიპტებისთვის უნდა ჩართეთ მეტა-დირექტივაში // @require https://update.greasyfork.org/scripts/382412/693949/MoM%20Test%20Lib.js.

var MyTest = {version: 2};

(function() {
  if (!window.MyTest) {
    window.MyTest = MyTest;
    console.log('window.MyTest initialized to version ' + MyTest.version);
  } else if (window.MyTest.version < MyTest.version) {
    window.MyTest = MyTest;
    console.log('window.MyTest overwritten to ' + MyTest.version);
  }
})();