Skip to content

Instantly share code, notes, and snippets.

@gourab5139014
Created November 28, 2014 14:46
Show Gist options
  • Save gourab5139014/1c7500fb75188c6b9a0e to your computer and use it in GitHub Desktop.
Save gourab5139014/1c7500fb75188c6b9a0e to your computer and use it in GitHub Desktop.
Purpose : One click access to proxy server for blocked pages
javascript: (function() {
a = document.location.href;
a = a.replace(/.*?:\/\//g, "");
b = "http://bcdboot.appspot.com/";
c = b.concat(a);
this.document.location.href = c;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment