Skip to content

Instantly share code, notes, and snippets.

@Akhi1
Last active November 14, 2017 02:50
Show Gist options
  • Save Akhi1/bc56f694f453b4d9e9424fb2e8238f7d to your computer and use it in GitHub Desktop.
Save Akhi1/bc56f694f453b4d9e9424fb2e8238f7d to your computer and use it in GitHub Desktop.
You can create a truecaller bookmark on your chrome and search mobile numbers in a single click on the go
1. Go to chrome bookmarks bar
2. Add new page and add the following credentials for Name and Url inputs
3. Name : <any name you desire>
4. Url : javascript:function tcaller(){ var mobile_num = window.prompt("Please enter the mobile number you want to search for"); if(mobile_num!=null && mobile_num!=""){ var search_num = window.open("https://www.truecaller.com/search/in/"+mobile_num) } else { var search_num = console.log("Please enter a valid number") } } tcaller();
5. You can update the above code and add you country code like shown below
window.open("https://www.truecaller.com/search/<YOUR COUNTRY CODE>/"+mobile_num
6. Try it!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment