I've recently started working at a company as a student where the workload is minimal. Many of the jobs they do manually, I can solve with a simple script, thus giving me loads of free time.
The downside to this is my account does not have internet access outside the website relevant to my workplace. I've been sniffing around and notice their redirect proxy server has a really amateurish system to block websites, it basically scans the web address and looks for certain keywords. By simply adding ?google to a web address, I can access it without issue.
But, every single link has to be edited with "?google" at the end, which is not really efficient. So I'm looking to write a script that looks up links (CSS/JS/Pictures/etc..) and automatically adds ?google at the end.
For example:
https://cdn.sstatic.net/stackoverflow/all.css?v=4a57bb936dd5 would become:
https://cdn.sstatic.net/stackoverflow/all.css?v=4a57bb936dd5?google Since I haven't worked yet with Tampermonkey yet I wonder if anyone knows a simple and efficient way to do this?