A collection of custom Chrome browser extensions designed to enhance productivity and provide specialized functionality for various tasks.
Stream YouTube videos directly to VLC with yt-dlp
- Auto-detects YouTube URLs
- Two modes: Direct streaming or high-quality download
- PowerShell command generation
- Auto-cleanup functionality
- Status: β Complete
- Clone or download this repository
- Open Chrome and navigate to
chrome://extensions/ - Enable Developer mode (toggle in the top right)
- Click "Load unpacked" and select the specific extension folder
- Extension installed! Look for the icon in your toolbar
- Google Chrome (or Chromium-based browser)
- Developer mode enabled in Chrome
- Windows (for PowerShell-based extensions)
Extensions/
βββ README.md # This file
βββ YouTube yt-dlp Launcher/ # YouTube streaming extension
β βββ manifest.json
β βββ background.js
β βββ popup.html
β βββ popup.js
β βββ content.js
β βββ README.md
βββ [Future Extensions]/ # Additional extensions will be added here
- Create a new folder in this repository
- Add required files:
manifest.json(extension configuration)background.js(service worker)popup.html&popup.js(if UI needed)content.js(if page interaction needed)README.md(extension-specific documentation)
- β Follow Chrome Extension Manifest V3 guidelines
- β Include comprehensive README for each extension
- β Test thoroughly before publishing
- β Use descriptive names and clear documentation
- β Follow security best practices
- Website Bookmark Manager - Advanced bookmark organization
- Password Generator - Secure password generation tool
- Tab Manager - Enhanced tab organization and management
- Screenshot Tool - Advanced screenshot and annotation features
- Link Extractor - Extract and manage links from web pages
Suggestions for new extensions are welcome!
{
"manifest_version": 3,
"name": "Extension Name",
"version": "1.0",
"description": "Extension description",
"permissions": ["activeTab"],
"action": {
"default_popup": "popup.html"
}
}activeTab- Access current active tabtabs- Tab managementstorage- Local storagenotifications- Show notificationsscripting- Inject scripts
- Chrome Extensions Documentation
- Manifest V3 Migration Guide
- Extension API Reference
- Chrome Extension Samples
- Use
chrome://extensions/for loading and debugging - Enable Developer mode for additional debugging options
- Use Inspect views: service worker for background script debugging
- Check Console for errors and logs
- Fork this repository
- Create a new branch for your extension
- Develop your extension following the guidelines
- Test thoroughly
- Submit a pull request with detailed description
- β Each extension must have its own folder
- β Include comprehensive README.md
- β Follow Chrome Extension best practices
- β Test on multiple Chrome versions
- β Ensure no security vulnerabilities
This project is licensed under the MIT License - see individual extension folders for specific licensing information.
MIT License
Copyright (c) 2025 Zakaria Hossain Foysal
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Zakaria Hossain Foysal
- GitHub: @your-github-username
- Email: your.email@example.com
Building useful Chrome extensions to enhance productivity and streamline workflows.
- Total Extensions: 1 (growing)
- Latest Update: June 28, 2025
- Chrome Compatibility: Manifest V3
- Platform: Windows (with cross-platform considerations)
β If you find these extensions useful, please consider giving this repository a star!