Repo creation date checker for Github

Check creation date and last updated date of repo's on Github.

Repo creation date checker for Githubとは何ですか?

Repo creation date checker for Githubはhttp://github.com/NeekSandhuによって開発されたChromeの拡張機能で、その主な機能は「Check creation date and last updated date of repo's on Github.」です。

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

screenshot

Repo creation date checker for Github拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Ever wondered how long a project has been around? OR you quickly want to know when it was last updated. This simple extension  adds two additional labels in the repo details bar, one for when the repo was created and the other for when it was last updated!!

Source code/Contribution https://github.com/NeekSandhu/Repo-creation-date-checker-for-Github                    

拡張機能の基本情報

名前 Repo creation date checker for Github Repo creation date checker for Github
ID gmfnjoaiijannkmjppchbknjdghpmleg
公式URL https://chromewebstore.google.com/detail/repo-creation-date-checke/gmfnjoaiijannkmjppchbknjdghpmleg
説明 Check creation date and last updated date of repo's on Github.
ファイルサイズ 97.66 KB
インストール数 250
現在のバージョン 1.1.0
最終更新日 2018-01-12
公開日 2018-01-12
評価 2.67/5 合計 3 レビュー
開発者 http://github.com/NeekSandhu
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Repo creation date checker for Github",
    "version": "1.1.0",
    "description": "Check creation date and last updated date of repo's on Github.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "author": "http:\/\/github.com\/NeekSandhu",
    "background": {
        "scripts": [
            "src\/js\/bg.js"
        ],
        "persistent": true
    },
    "homepage_url": "http:\/\/github.com\/NeekSandhu",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "src\/js\/injected.js"
            ],
            "css": [
                "src\/css\/main.css"
            ],
            "run_at": "document_start"
        }
    ]
}