We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e077c05 commit 2dafa89Copy full SHA for 2dafa89
extras/popup/popup.js
@@ -1385,3 +1385,15 @@ async function getCommit() {
1385
)})`;
1386
} catch (err) {}
1387
}
1388
+
1389
1390
+var iconsclicks = 0;
1391
1392
+document.querySelector(".searchbaricon")?.addEventListener("click", function () {
1393
+ iconsclicks += 1;
1394
+ if (iconsclicks > 9) {
1395
+ chrome.tabs.create({
1396
+ url: "chrome-extension://" + chrome.runtime.id + "/extras/game/index.html",
1397
+ });
1398
+ }
1399
+})
0 commit comments