This chrome extension is the bare minimum that you need to inject custom javascript and CSS file in a webpage. This code will add an additional search button on Google search page.
To add the extension on your local machine chrome browser - watch the following video.
- Open
init.js
- Replace Mathemafia with your search keyword
- If it is a single word, you are done
- If your search has multiple words, then replace the
event.target.value.split(" ")[1]
withevent.target.value.slice(str.indexOf(" "));