2021-04-02 21:50:55 +08:00

13 lines
235 B
JavaScript

let index = 0;
setInterval(function () {
let msg = "util: " + index++;
// chrome.extension.sendMessage(msg;
if (typeof aa !== undefined) {
msg = aa;
}
window.postMessage({type: 1, msg: msg}, '*');
}.bind(this), 2000);