s3eternals3 / Watch C1

// ==UserScript==
// @name         Watch C1
// @namespace    com.livescore.watchc1
// @version      1.2
// @description  try to take over the world!
// @author s3eternals3
// @copyright 2023, s3eternals3 (https://openuserjs.org/users/s3eternals3)
// @downloadURL https://openuserjs.org/install/s3eternals3/Watch_C1.user.js
// @updateURL https://openuserjs.org/meta/s3eternals3/Watch_C1.meta.js
// @match        https://www.livescore.com/en/football/champions-league/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=livescore.com
// @grant       GM_xmlhttpRequest
// @license     MIT
// ==/UserScript==

localStorage.setItem('ls.authDetails', '{"accessToken":"c","sessionId":"a","refreshToken":"b","isSelfExcluded":false,"userEmail":"a@gmail.com","countryCode":"IE","hasBettingAccount":false,"isFullRegistration":false,"accessTokenTTL":9209601065,"lastTokenRefresh":9695228368935,"__lastTokenRefreshDate":"Wed Sep 20 2023 23:46:08 GMT+0700 (Indochina Time)","__lastTokenRefreshExpiredDate":"Wed Oct 04 2023 23:46:10 GMT+0700 (Indochina Time)","__lastTokenRefreshOutdatedDate":"Thu Sep 21 2093 23:46:09 GMT+0700 (Indochina Time)","userInfoFetchTime":9695239216695,"__userInfoFetchTimeDate":"Thu Sep 21 2093 02:46:56 GMT+0700 (Indochina Time)"}')

if (window.navigator.userAgent.includes('Firefox')) {
  process({
    "c": "IE"
  });
}
else {
  var interval = setInterval(() => {
    if (process) {
      process({
        "c": "IE"
      });
      clearInterval(interval);
    }
  }, 100);
}