Files
webextensions-examples/mocha-client-tests/addon/scripts/popup.js
rebloor 82217a05bc Replace var with let in examples (#484)
* Replace var with let in examples

store-collected-images/webextension-plain/deps/uuidv4.js

* Reverted third–party code
2022-08-11 04:27:28 +12:00

11 lines
339 B
JavaScript

setInterval(function() {
let $game = document.querySelector('#game');
if($game.innerText !== 'ping'){
$game.innerText = 'ping';
} else{
browser.runtime.sendMessage({action: 'ping'}).then((response) => {
$game.innerText = response;
});
}
}, 1000);