MoM Test Lib

Just a test

此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.cn-greasyfork.org/scripts/382412/693949/MoM%20Test%20Lib.js

  1. var MyTest = {version: 2};
  2.  
  3. (function() {
  4. if (!window.MyTest) {
  5. window.MyTest = MyTest;
  6. console.log('window.MyTest initialized to version ' + MyTest.version);
  7. } else if (window.MyTest.version < MyTest.version) {
  8. window.MyTest = MyTest;
  9. console.log('window.MyTest overwritten to ' + MyTest.version);
  10. }
  11. })();