@NotWegant Forgive me for confusion. Actually, my problem is I want to buy OpenAI/ChatGPT number from 5sim.net service in "Phone Verification" module. Although I chose the site as OpenAI, it says "other" in the "$service" parameter in the api request. For example:
"http://api1.5sim.net/stubs/handler_api.php?api_key=--&action=getNumber&service=other&country=usa&ref=592310"
How to LOWER volume of "PLAYSOUND"?
-
Hi! If I change it in taskbar volume settings then it will go back to loud when i restart the app.
I have manual browser control part in my script and i need to call sound but its too loud for me to stand it
Any help appreciated!
-
@yourfriendkarol said in How to LOWER volume of "PLAYSOUND"?:
Hi! If I change it in taskbar volume settings then it will go back to loud when i restart the app.
I have manual browser control part in my script and i need to call sound but its too loud for me to stand it
Any help appreciated!
add the line
--mute-audioto the chrome_command_line.txt fileOr use the "Javascript" action with the code:
var mute=function(tag){var elems = document.getElementsByTagName(tag);for(var i = 0; i < elems.length; i++){elems[i].muted=true;}};mute("video");mute("audio");document.addEventListener("DOMSubtreeModified", function(event) {mute("video");mute("audio");});