mirror of
https://github.com/tidys/cc-inspector-chrome
synced 2025-04-20 08:58:41 +00:00
13 lines
235 B
JavaScript
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);
|
||
|
|
||
|
|
||
|
|