Greasy Fork is available in English.

MoM Test Lib

Just a test

Dette scriptet burde ikke installeres direkte. Det er et bibliotek for andre script å inkludere med det nye metadirektivet // @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);
  }
})();