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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://github.com/NeekSandhu, και η κύρια λειτουργία του είναι "Check creation date and last updated date of repo's on Github.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Repo creation date checker for Github

Λήψη αρχείων επέκτασης 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"
        }
    ]
}