diff options
-rw-r--r-- | chaika.js | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -65,6 +65,7 @@ let INFO = (function () { const Chaika = {}; Components.utils.import("resource://chaika-modules/ChaikaThread.js", Chaika); + Components.utils.import("resource://chaika-modules/Chaika2chViewer.js", Chaika); function deleteCurrentThreadLog () { let currentURI = getBrowser().currentURI.QueryInterface(Ci.nsIURL); @@ -106,6 +107,16 @@ let INFO = liberator.echoerr(ex); } } + ), + new Command( + ['auth'], + 'Maru auth(?)', + function (args) { + Chaika.Chaika2chViewer.auth(); + }, + { + argCount: '0' + } ) ] }, |