February 03, 2012

Blogger NCR UserScript

Google has recently changed the way blogspot domains work. Now if you're from Australia, you'll see blogspot.au not blogspot.com.
I was annoyed with this new changed because I was always redirected to technoslab.blogspot.in so I wrote this UserScript for myself.

What does it do ? 

This Userscript lets you always browse the original blogspot blog by automatically sending you to NCR version of that blog.

Author: Me
Location: http://userscripts.org/scripts/show/124838

5 comments:

  1. nice share bro...search 4 this script only....thanks very much...

    ReplyDelete
  2. I have developed another option, if you want to try it, it's used in my blog:
    //<![CDATA[
    (function(){
    if( document.URL.match(/\.blogspot\.(com\...\/|..\/)/) ){
    var URL = document.URL
    URL = URL.replace(URL.match(/\.blogspot\.(com\...\/|..\/)/)[0],".blogspot.com\/ncr\/")
    document.location = URL
    }
    })()
    //]]>

    I hope it is helpful to everyone

    ReplyDelete
  3. Useful but temporary.

    ReplyDelete