Voice Tab Switcher is a Chrome extension that allows seamless tab navigation using voice commands. With this extension, you can switch to the next or previous tab by simply speaking commands like "Change next" and "Change back". This enhances productivity by minimizing the need for manual tab management.
- Voice Commands: Switch tabs using voice prompts.
- Easy Navigation: Navigate through tabs without using the mouse or keyboard.
- User-Friendly: Simple and intuitive interface.
- JavaScript: Core scripting language for the extension.
- HTML & CSS: Markup and styling for the popup interface.
- Chrome APIs: Utilizes Chrome's
tabs
,activeTab
, andscripting
APIs.
- Download or Clone the Repository:
https://github.com/IcodeG00D/Chrome-Extension.git
- Open Chrome Extensions Page:
- Navigate to
chrome://extensions/
. - Enable Developer mode by toggling the switch at the top right.
- Navigate to
- Load Unpacked Extension:
- Click on "Load unpacked".
- Select the
VoiceTabSwitcher
directory.
- Activate the Extension:
- Click on the Voice Tab Switcher icon in the Chrome toolbar.
- Give Voice Commands:
- Say "Change next" to move to the next tab.
- Say "Change back" to move to the previous tab.
VoiceTabSwitcher/ │ ├── background.js ├── manifest.json ├── popup.html ├── images/ │ ├── icon16.png │ ├── icon48.png │ └── icon128.png │ ├── popup.js ├── popup.css ├── content-script.js ├── LICENSE.txt └── README.md