I’m looking for any tips or tricks for making chrome headless mode less detectable. Here is what I’ve done so far:
Set my args as follows:
const run = (async () => {
const args = [
'--no-sandbox',
'--disable-setuid-sandbox',
'--disable-infobars',
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name SOJM | |
| // @namespace salembeats | |
| // @version 2.16 | |
| // @description Compare your earnings to the crowd, to tell whether it's "Slow, Or Just Me?" | |
| // @author Cuyler Stuwe (salembeats) | |
| // @include https://worker.mturk.com/dashboard* | |
| // ==/UserScript== | |
| const globals = { |
OlderNewer