Git Up

Move Github repository's readme to the top

Vad är Git Up?

Git Up är en Chrome-tillägg utvecklad av Aniket Kudale, och dess huvudfunktion är "Move Github repository's readme to the top".

Tilläggsskärmbilder

screenshot

Ladda ner Git Up-förlängningens CRX-fil

Ladda ner Git Up-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Git Up Git Up
ID ippcncckpdiaahmmolbilefbldgibmff
Officiell webbadress https://chrome.google.com/webstore/detail/git-up/ippcncckpdiaahmmolbilefbldgibmff
Beskrivning Move Github repository's readme to the top
Filstorlek 10.5 KB
Antal Installationer 30
Aktuell Version 1.1
Senast Uppdaterad 2020-09-23
Publiceringsdatum 2020-09-20
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare Aniket Kudale
E-post [email protected]
Betalningssätt free
Stödda Språk 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\/*"
    ]
}