1

I have been playing online Mahjong for a while (you can treat it as Texas Poker). Recently I am developing a chrome extension to help me track the tiles (cards).

I am very curious whether the game developers are able to detect that I am using a chrome extension, given that I do all these things in secret (without publishing it on chrome webstore). Since I know that some players received account ban because of using Tampermonkey scripts.

RikaShiro
  • 31
  • 3
  • might be helpful: https://stackoverflow.com/questions/6293498/check-whether-user-has-a-chrome-extension-installed – Kartoos Jan 29 '23 at 07:08
  • I have read similar posts. The answer was that the detection is possible given that the developers know the specific extension ID. Thus I am curious whether things in secret will be detected – RikaShiro Jan 29 '23 at 07:33

1 Answers1

1

The short answer is yes they can. But it is more complicate then it looks. If you are familiar with ad-block extention (which prevent banner and advertisment popups), you can see there are some web sites that can detect if your browser using this extention and they not allow you to see their content. But add-block is very well known extention and I guess the developers who wrote the code that detect if it is install did some reaserch how to do it.

In your case, if your extention will stay only for your private use, it is much harder to fight aganist somethine you (the developer of the web site) doesn't know and can test.

There are some known scenarios that they can test to see if the answers came from script. Like to calculate the times that you answered the question and to see if it is not too fast or to check if there are a lot of attempts of tring to solve question in very short period.

The scion
  • 1,001
  • 9
  • 19
  • Thanks a lot. Your example of ad blocker is very helpful and insight! It seems that public extensions can be detected because of known extension ID (idk if this conclusion is correct). Thus I am wondering whether private things will also be detected. – RikaShiro Jan 29 '23 at 07:36