Git Up

Move Github repository's readme to the top

Git Upとは何ですか?

Git UpはAniket Kudaleによって開発されたChromeの拡張機能で、その主な機能は「Move Github repository's readme to the top」です。

拡張機能のスクリーンショット

screenshot

Git Up拡張機能のCRXファイルをダウンロード

Git Up拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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\/*"
    ]
}