Notification texts go here Contact Us Buy Now!

Avoid/Bypass Dev tools detection in Chrome?

Bypass Dev Tools Detection in Chrome:

Method 1: Disable the check() Function Using Chrome Overrides:

  • Locate the check() function in the JavaScript code of the protected website.
  • Open Chrome DevTools and navigate to the Overrides tab.
  • Add the path to the JavaScript file containing the check() function.
  • In the overridden version, find the check() function and add return true; to its beginning.

Method 2: Use FireBug Lite Extension:

  • Install the FireBug Lite extension in Chrome.
  • Open the protected website and activate FireBug Lite.
  • Use FireBug Lite's debugging tools to inspect the website's code and bypass any detection mechanisms.

Method 3: Extract the M3U8 Link Using JavaScript:

    import axios from "axios";
    const response = await axios.get(
      "https://hqq.tv/player/embed_player.php?vid=QkNSWnNReXIxVHNGbmhuWWRaR1E4dz09",  //example hqq url
      {
        headers: {
          Referer: "https://tioanime.com/",
        },
      }
    );
    const regexPattern = /olplayer\.src\(\s*({[^]*?})\s*\);/g;
    const regex = new RegExp(regexPattern);
    const matches = response.data.matchAll(regex);
    let finalResponse = "";
    for (const match of matches) {
      const extractedContent = match[1].trim();
      if (extractedContent === "{ type: 'application/x-mpegURL', src:vurl}") {
        continue;
      }
      finalResponse += extractedContent;
    }
    const streamUrl = finalResponse
         .replace(/(\w+):\s/g, '"$1":')
         .replace(/'/g, '"')
         .replace(/\\/g,'\/')

    console.log(JSON.parse(streamUrl));

Note: The provided JavaScript code extracts the M3U8 link from a specific HQQ.TV URL as an example. You may need to adapt it for other scenarios.

Post a Comment

Cookie Consent
We serve cookies on this site to analyze traffic, remember your preferences, and optimize your experience.
Oops!
It seems there is something wrong with your internet connection. Please connect to the internet and start browsing again.
AdBlock Detected!
We have detected that you are using adblocking plugin in your browser.
The revenue we earn by the advertisements is used to manage this website, we request you to whitelist our website in your adblocking plugin.
Site is Blocked
Sorry! This site is not available in your country.