StackOverflow Search¶
The word around town is that your code has a lot of bugs. You must use StackOverflow often. To make your life a little easier, build a Chrome extension that helps you search for things on StackOverflow. It should work like this
- User clicks in the Chrome address bar (AKA the omnibox).
- User types
so
and hits Tab to activate the extension. - User types a search term like
how to make an array in javascript
. - User hits Enter to display google search results restricted to stackoverflow.com.
Demo¶
Setup¶
Create a directory named stackoverflow-search as the project root. Give it a single file, manifest.json
.
Project Structure
stackoverflow-search/
manifest.json
manifest.json
{
"manifest_version": 3,
"name": "StackOverflow Search",
"description": "Reach StackOverflow more easily, so you can fix those stupid bugs sooner.",
"version": "1.0"
}