Replace part of the URL with another string using custom bypasses #558
|
How do I replace part of the URL with another string using custom bypasses? i.e. how do I define a rule set so |
Answered by
lostdusty
Oct 5, 2022
Replies: 2 comments 3 replies
|
Well a late reply here, but if you haven't figured it out by now you could just run another tool to do that. Sorry I don't got anything better. |
2 replies
|
I've done something similar to someone who wanted to replace the short imgbb domain, see here: #491 (comment) Basically, the snippet is: domainBypass("example.com", () => {
var a = window.location.href
var finalurl = a.replace("example.com", "zambo.com")
safelyNavigate(finalurl)
}) |
1 reply
Answer selected by
lostdusty
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've done something similar to someone who wanted to replace the short imgbb domain, see here: #491 (comment)
Basically, the snippet is: