GitHub similar repository suggestions

It shows the similar repositories to the one which is currently open.

GitHub similar repository suggestions क्या है?

GitHub similar repository suggestions Vivek Kumar द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "It shows the similar repositories to the one which is currently open."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में GitHub similar repository suggestions एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        It gives a list of all the similar repositories which are similar to the one which is currently viewed. 
The list is sorted by the number of stars.

Steps:-
1. Go to a repository, e.g. https://github.com/tensorflow/tensorflow
2. Wait for the page to load
3. Click the extension icon of Github Similar Repos on the top, beside address bar.

For more details, visit https://github.com/vivekkumar2696/github-similar-repos

If you like it consider buying a coffee.. https://www.buymeacoffee.com/vivekkumar2696                    

एक्सटेंशन की मूल जानकारी

नाम GitHub similar repository suggestions GitHub similar repository suggestions
ID ppgdlobphnefimdieecenohghobnfndh
आधिकारिक URL https://chromewebstore.google.com/detail/github-similar-repository/ppgdlobphnefimdieecenohghobnfndh
विवरण It shows the similar repositories to the one which is currently open.
फ़ाइल का आकार 486 KB
स्थापना संख्या 111
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2021-05-30
प्रकाशन तिथि 2020-01-05
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर Vivek Kumar
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/vivekkumar2696/github-similar-repos
समर्थित भाषाएँ en
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"
        ]
    }
}