This Chrome extension allows you to easily switch YouTube URLs to their embedded versions. With a single click, the extension converts the standard YouTube video URL to the embed URL.
- Switch from regular YouTube video URL (
youtube.com/watch?v=videoID
) to embed URL (youtube.com/embed/videoID
). - Simple and lightweight Chrome extension that enhances your browsing experience.
- Google Chrome installed.
Clone or download the repository to your local machine:
git clone https://github.com/your-username/YouTube-Embed-Switcher.git
- Open Google Chrome and go to
chrome://extensions/
. - Toggle the Developer mode switch in the top-right corner to On.
- Click on Load unpacked.
- Select the folder where you downloaded or cloned this repository.
Your extension is now installed!
- Navigate to any YouTube video.
- Click the extension icon in the Chrome toolbar.
- The URL of the video will automatically change to the embed version (e.g.,
https://www.youtube.com/embed/{videoID}
).
When you click the extension icon:
- The script checks if the current page is a YouTube video.
- If it's a valid YouTube video URL, the extension extracts the video ID.
- The extension then redirects you to the corresponding embedded video URL.
manifest.json
: Contains the metadata for the Chrome extension (version, permissions, etc.).background.js
: The script that contains the logic for switching URLs.popup.html
: Optional HTML for the popup UI (can be added later if needed).
Feel free to fork this repository and improve the extension!
To run the extension locally:
- Follow the installation steps above.
- If you modify the code, reload the extension by clicking Reload on the
chrome://extensions/
page.
This extension is open-source and available under the MIT License.