MoM Test Lib

Just a test

此腳本不應該直接安裝,它是一個供其他腳本使用的函式庫。欲使用本函式庫,請在腳本 metadata 寫上: // @require https://update.cn-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);
  }
})();