Github - Date of creation

Display a date of creation of a repository hosted on Github

Cos'è Github - Date of creation?

Github - Date of creation è un'estensione di Chrome sviluppata da lvarayut, e la sua funzione principale è "Display a date of creation of a repository hosted on Github".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Github - Date of creation

Scarica i file di estensione Github - Date of creation in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        ## 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                    

Informazioni di Base sull'Estensione

Nome Github - Date of creation Github - Date of creation
ID dgnomofcgpdalifennakmbocjpdiafhg
URL Ufficiale https://chromewebstore.google.com/detail/github-date-of-creation/dgnomofcgpdalifennakmbocjpdiafhg
Descrizione Display a date of creation of a repository hosted on Github
Dimensione del File 477 KB
Conteggio Installazioni 996
Versione Corrente 1.0.5
Ultimo Aggiornamento 2024-01-07
Data di Pubblicazione 2020-06-27
Valutazione 3.93/5 Totale 15 Valutazioni
Sviluppatore lvarayut
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/lvarayut/github-date-of-creation
Lingue Supportate 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"
    }
}