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 |
Beta Was this translation helpful? Give feedback.
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. |
Beta Was this translation helpful? Give feedback.
-
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)
}) |
Beta Was this translation helpful? Give feedback.
I've done something similar to someone who wanted to replace the short imgbb domain, see here: #491 (comment)
Basically, the snippet is: