Lovely forks

Show notable forks of GitHub projects.

Lovely forks क्या है?

Lovely forks https://musicallyut.xyz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Show notable forks of GitHub projects."।

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

screenshot
screenshot

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

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

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

                        An extension to help you notice notable forks of GitHub projects.

Sometimes on GitHub, projects are abandoned by the original authors and the development continues on a fork. However, the original repository is often not updated to let new-comers see that. I have many times wasted effort on making a pull-request or installing old buggy versions of projects when the community had already moved to a fork.

To make matters worse, the old projects usually have higher search-engine traffic and a lot more stars than the forks. This makes the forks even harder to find. This extension tries to remedy that by adding a subscript under the name of the repository on the Github page of all projects with a link to the most notable fork (i.e. the fork with the most stars), if such a fork exists.                    

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

नाम Lovely forks Lovely forks
ID ialbpcipalajnakfondkflpkagbkdoib
आधिकारिक URL https://chromewebstore.google.com/detail/lovely-forks/ialbpcipalajnakfondkflpkagbkdoib
विवरण Show notable forks of GitHub projects.
फ़ाइल का आकार 945 KB
स्थापना संख्या 1,782
वर्तमान संस्करण 3.7.3
अंतिम अपडेट 2023-11-07
प्रकाशन तिथि 2020-05-21
रेटिंग 4.62/5 कुल 13 रेटिंग्स
डेवलपर https://musicallyut.xyz
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/musically-ut/lovely-forks
सहायता पृष्ठ URL https://github.com/musically-ut/lovely-forks/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Lovely forks",
    "version": "3.7.3",
    "manifest_version": 3,
    "description": "Show notable forks of GitHub projects.",
    "homepage_url": "https:\/\/github.com\/musically-ut\/lovely-forks",
    "icons": {
        "128": "webext\/icons\/Heart_and_fork_inside_128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "webext\/icons\/star.svg",
                "webext\/icons\/flame.svg"
            ],
            "matches": [
                "*:\/\/github.com\/*"
            ]
        }
    ],
    "options_ui": {
        "page": "webext\/options_ui\/options.html"
    },
    "host_permissions": [
        "*:\/\/github.com\/*",
        "*:\/\/api.github.com\/*"
    ],
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "css": [
                "webext\/data\/style.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "js": [
                "webext\/data\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}