Last active
November 14, 2017 02:50
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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