diff --git a/public/iframe.html b/public/iframe.html
index f32ba97..0219f90 100644
--- a/public/iframe.html
+++ b/public/iframe.html
@@ -3,11 +3,11 @@
-
-
+ crossorigin="anonymous">
+
+
+
-
-
+
+
-
-
-
-
-
+ });
+
+ function countTime() {
+ localStorage.setItem('moonlight.timesearched', parseInt(localStorage.getItem('moonlight.timesearched')) + 1)
+ console.log(localStorage.getItem('moonlight.timesearched'))
+ }
+
+ if (localStorage.getItem('moonlight.timesearched')) {
+ setInterval(countTime, 1000)
+ } else {
+ localStorage.setItem('moonlight.timesearched', 0);
+ setInterval(countTime, 1000)
+ }
+
+
+
+
+