mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-18 10:23:08 +09:00
18 lines
316 B
HTML
18 lines
316 B
HTML
<html>
|
|
<body>
|
|
<script>
|
|
|
|
var name = location.search.substring(1);
|
|
addEventListener('load', function() {
|
|
setTimeout(function() {
|
|
alert(name + ':ready');
|
|
}, 0);
|
|
});
|
|
|
|
addEventListener('visibilitychange', function() {
|
|
alert(name + ':' + (document.hidden ? 'hidden' : 'visible'));
|
|
});
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|