Website Finder is a simple and efficient Chrome extension that helps users find websites based on keywords. Just type your search term, and the extension will open relevant search results instantly.
✅ Quick website search using Google/Bing/DuckDuckGo
✅ Simple and lightweight extension
✅ Easy-to-use popup interface
✅ Opens search results in a new tab
- Download or clone this repository:
git clone https://github.com/yourusername/website-finder.git
- Open Google Chrome.
- Go to
chrome://extensions/
. - Enable Developer Mode (toggle on the top right).
- Click "Load unpacked" and select the extension folder.
- The extension is now installed! 🎉
- Click on the Website Finder icon in the Chrome toolbar.
- Enter a keyword in the search box.
- Press Enter or click "Search".
- The results will open in a new tab.
website-finder/
│── manifest.json # Extension configuration
│── popup.html # UI for the extension
│── popup.js # JavaScript logic
│── styles.css # Extension styling
│── icons/ # Icons for the extension
└── README.md # Documentation
{
"manifest_version": 3,
"name": "Website Finder",
"version": "1.0",
"description": "Find websites quickly using search engines.",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"permissions": ["activeTab"],
"action": {
"default_popup": "popup.html",
"default_icon": "icons/icon48.png"
}
}
We welcome contributions! If you’d like to improve this extension, feel free to:
- Fork the repository
- Create a new branch (
git checkout -b feature-branch
) - Make your changes and commit (
git commit -m "Added new feature"
) - Push to the branch (
git push origin feature-branch
) - Create a Pull Request 🚀
This project is licensed under the MIT License.