Github - Date of creation

Display a date of creation of a repository hosted on Github

Qu'est-ce que Github - Date of creation ?

Github - Date of creation est une extension Chrome développée par lvarayut, et sa fonction principale est "Display a date of creation of a repository hosted on Github".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Github - Date of creation

Téléchargez les fichiers d'extension Github - Date of creation au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Github - Date of creation Github - Date of creation
ID dgnomofcgpdalifennakmbocjpdiafhg
URL Officiel https://chromewebstore.google.com/detail/github-date-of-creation/dgnomofcgpdalifennakmbocjpdiafhg
Description Display a date of creation of a repository hosted on Github
Taille du Fichier 477 KB
Nombre d'Installations 996
Version Actuelle 1.0.5
Dernière Mise à Jour 2024-01-07
Date de Publication 2020-06-27
Évaluation 3.93/5 Total 15 Évaluations
Développeur lvarayut
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/lvarayut/github-date-of-creation
Langues Prises en Charge 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"
    }
}