Want to understand more about a GitHub project??!!
Use this button to explore any GitHub repository with DeepWiki
View in DeepWikiDrag the button above to your bookmarks bar and use it when you're on a project page.

DeepWiki is a project powered by Devin, which generates a wiki from an LLM engine that allows you to better understand a project and ask in-depth questions.
Bookmarklet Code
javascript:(function(){
const match = window.location.href.match(/^https:\/\/github\.com\/([^\/]+\/[^\/]+)/);
if (match) {
const newUrl = 'https://deepwiki.com/' + match[1];
window.open(newUrl, '_blank');
} else {
alert('You are not on a valid GitHub page.');
}
})();
This is an idea by onData