NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name aa-sob // @namespace https://github.com/dieuph // @description SOB Data Filler for Acrevis/Alpha // @author dieu // @license MIT; https://opensource.org/licenses/MIT // @homepageURL https://github.com/dieuph // @updateURL https://openuserjs.org/meta/dieuph/aa-sob.meta.js // @copyright 2018, dieu (https://github.com/dieuph) // @include /^https?://.*\.axonivy\.io/.*$/ // @include /^http?://.*localhost:\d{4}/ivy.*$/ // @include /^http?://.*192.168.80.27:\d{4}/ivy.*$/ // @include /^http?://.*10.124.1.75:\d{4}/ivy.*$/ // @include /^http?://.*10.124.1.149:\d{4}/ivy.*$/ // @include /^http?://.*10.124.1.231:\d{4}/ivy.*$/ // @require https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.26.0/babel.min.js // @require https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.26.0/babel.min.js // @require https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.0/underscore-min.js // @require https://cdnjs.cloudflare.com/ajax/libs/chance/1.0.16/chance.min.js // @grant GM_getValue // @grant GM_setValue // @grant GM_deleteValue // @grant GM_xmlhttpRequest // @grant GM_listValues // @grant GM_registerMenuCommand // @grant GM_log // @grant GM_addStyle // @version 0.1 // ==/UserScript== /* */ var $ = unsafeWindow.$; var jQuery = unsafeWindow.jQuery; /* jshint ignore: start */ var inline_src = (<><![CDATA[ /* jshint ignore:end */ /* jshint esnext: false */ /* jshint esversion: 6 */ /* jshint ignore:start */ ]]></>).toString(); var c = Babel.transform(inline_src, { presets: [ "es2015", "es2016" ] }); eval(c.code); /* jshint ignore:end */