-
-
Save ranomail/7e843ffb24dbc933a244044af7e53e0b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setTimeout(function () { | |
function getAllModules() { | |
return new Promise((resolve) => { | |
const id = _.uniqueId("fakeModule_"); | |
window["webpackJsonp"]( | |
[], { | |
[id]: function (module, exports, __webpack_require__) { | |
resolve(__webpack_require__.c); | |
} | |
}, [id] | |
); | |
}); | |
} | |
var modules = getAllModules()._value; | |
for (var key in modules) { | |
if (modules[key].exports) { | |
if (modules[key].exports.default) { | |
if (modules[key].exports.default.Wap) { | |
store_id = modules[key].i.replace(/"/g, '"'); | |
} | |
} | |
if (modules[key].exports.sendTextMsgToChat) { | |
chat_id = modules[key].i.replace(/"/g, '"'); | |
} | |
} | |
} | |
}, 2000); | |
function _requireById(id) { | |
return webpackJsonp([], null, [id]); | |
} | |
var store_id = 0; | |
var chat_id = 0; | |
var Store = {}; | |
function init() { | |
window.Store = _requireById(store_id).default; | |
window.Store.sendTextMsgToChat = _requireById(chat_id).sendTextMsgToChat; | |
console.log("Store is ready"); | |
window.Store.Chat.find("[email protected]").then((user) => { window.Store.sendTextMsgToChat(user, "hellao"); }); | |
} | |
setTimeout(function () { | |
init(); | |
}, 5000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment