This is a simple browser extension, compatible with both Edge and Chrome browsers, that redirects GitHub URLs to DeepWiki URLs when the plugin button is clicked.
- When the plugin button is clicked, it detects if the current URL starts with
https://github.com/ - If it's a GitHub URL, it directly replaces
https://github.com/withhttps://deepwiki.com/without confirmation popup - If it's not a GitHub URL, it displays a small popup with the text "github.com"
- For example: When you are on the page
https://github.com/AsyncFuncAI/deepwiki-openand click the plugin button, the page will redirect tohttps://deepwiki.com/AsyncFuncAI/deepwiki-open
- Download or clone this repository to your computer
- In the Edge browser, enter
edge://extensions/to access the extension management page - Turn on "Developer mode" in the top right corner
- Click "Load unpacked extension"
- Select this project's folder
- Download or clone this repository to your computer
- In the Chrome browser, enter
chrome://extensions/to access the extension management page - Turn on "Developer mode" in the top right corner
- Click "Load unpacked extension"
- Select this project's folder
manifest.json: Configuration file for the pluginbackground.js: Background service script for the pluginpopup.html: Popup window displayed when the plugin icon is clickedpopup.js: Core logic for URL conversionimages/: Folder containing plugin iconsicon_generator.html: Tool for generating icons
- Open the
icon_generator.htmlfile in a browser - Click the "Generate Icons" button to generate simple icons
- Click the "Download All Icons" button to save the icons
- Place the downloaded icon files in the
imagesfolder of the project
- This plugin requires
tabsandactiveTabpermissions to function properly - The plugin only performs conversion when the user clicks the plugin button and the current URL starts with
https://github.com/ - Users need to manually click the plugin button each time they want to convert a URL
- This plugin uses the standard WebExtension API, fully compatible with Chromium-based browsers (including Edge and Chrome)