It shows the similar repositories to the one which is currently open.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "GitHub similar repository suggestions",
"version": "1.0.0",
"manifest_version": 2,
"description": "It shows the similar repositories to the one which is currently open.",
"permissions": [
"storage",
"activeTab"
],
"homepage_url": "https://github.com/vivekkumar2696/github-similar-repos",
"author": "Vivek Kumar",
"icons": {
"32": "./icons/GitHub-Mark-32px.png",
"64": "./icons/GitHub-Mark-64px.png",
"128": "./icons/GitHub-Mark-120px-plus.png"
},
"content_scripts": [
{
"matches": [
"*://github.com/*"
],
"js": [
"./src/content.js"
],
"css": [
"./src/popup.css"
]
}
],
"web_accessible_resources": [
"src/popup.html",
"popup.css"
],
"browser_action": {
"default_icon": {
"32": "./icons/GitHub-Mark-32px.png",
"64": "./icons/GitHub-Mark-64px.png",
"128": "./icons/GitHub-Mark-120px-plus.png"
},
"default_title": "GitHub Similar Repositories: Click to show/hide similar repositories"
},
"background": {
"scripts": [
"./src/background.js"
]
}
}