Github - Date of creation

Display a date of creation of a repository hosted on Github

Τι είναι το Github - Date of creation;

Το Github - Date of creation είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον lvarayut, και η κύρια λειτουργία του είναι "Display a date of creation of a repository hosted on Github".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Github - Date of creation

Λήψη αρχείων επέκτασης Github - Date of creation σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        ## Highlights

- Beautiful calendar icon in the summary bar on a repository page
- Customizable date format followed [Moment](https://momentjs.com/docs/#/displaying) format pattern
- Best performance by storing all fetched URIs in the Storage                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Github - Date of creation Github - Date of creation
ID dgnomofcgpdalifennakmbocjpdiafhg
Επίσημο URL https://chromewebstore.google.com/detail/github-date-of-creation/dgnomofcgpdalifennakmbocjpdiafhg
Περιγραφή Display a date of creation of a repository hosted on Github
Μέγεθος Αρχείου 477 KB
Αριθμός Εγκαταστάσεων 996
Τρέχουσα Έκδοση 1.0.5
Τελευταία Ενημέρωση 2024-01-07
Ημερομηνία Δημοσίευσης 2020-06-27
Αξιολόγηση 3.93/5 Συνολικά 15 Αξιολογήσεις
Προγραμματιστής lvarayut
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/lvarayut/github-date-of-creation
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github - Date of creation",
    "version": "1.0.5",
    "manifest_version": 3,
    "description": "Display a date of creation of a repository hosted on Github",
    "homepage_url": "https:\/\/github.com\/lvarayut\/github-date-of-creation",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "author": "Varayut Lerdkanlayanawat",
    "action": {
        "default_icon": "icons\/icon19.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "http:\/\/github.com\/*",
        "https:\/\/github.com\/*"
    ],
    "background": {
        "service_worker": "src\/bg\/index.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/github.com\/*",
                "https:\/\/github.com\/*"
            ],
            "js": [
                "src\/vendors\/moment.min.js",
                "src\/constant\/index.js",
                "src\/inject\/index.js"
            ]
        }
    ],
    "options_ui": {
        "page": "src\/option\/index.html"
    }
}