Git Up

Move Github repository's readme to the top

Git Up क्या है?

Git Up Aniket Kudale द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Move Github repository's readme to the top"।

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

screenshot

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

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

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

                        This extension moves the readme of Github Repository to the top.                    

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

नाम Git Up Git Up
ID ippcncckpdiaahmmolbilefbldgibmff
आधिकारिक URL https://chrome.google.com/webstore/detail/git-up/ippcncckpdiaahmmolbilefbldgibmff
विवरण Move Github repository's readme to the top
फ़ाइल का आकार 10.5 KB
स्थापना संख्या 30
वर्तमान संस्करण 1.1
अंतिम अपडेट 2020-09-23
प्रकाशन तिथि 2020-09-20
रेटिंग 1.00/5 कुल 1 रेटिंग्स
डेवलपर Aniket Kudale
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Git Up",
    "version": "1.1",
    "manifest_version": 2,
    "description": "Move Github repository's readme to the top",
    "homepage_url": "https:\/\/www.aniket.co",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [
                "css\/style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/github.com\/*"
    ]
}