GitHub Remarks

a chrome extension that can give github repos your own remarks

Qu'est-ce que GitHub Remarks ?

GitHub Remarks est une extension Chrome développée par hanzichi, et sa fonction principale est "a chrome extension that can give github repos your own remarks".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension GitHub Remarks

Téléchargez les fichiers d'extension GitHub Remarks 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

                        a chrome extension that can give github repos your own remarks                    

Informations de Base sur l'Extension

Nom GitHub Remarks GitHub Remarks
ID pkepkgjchpahghcfdmdokoonapagblem
URL Officiel https://chromewebstore.google.com/detail/github-remarks/pkepkgjchpahghcfdmdokoonapagblem
Description a chrome extension that can give github repos your own remarks
Taille du Fichier 178 KB
Nombre d'Installations 45
Version Actuelle 1.2.1
Dernière Mise à Jour 2018-05-28
Date de Publication 2018-05-27
Évaluation 5.00/5 Total 1 Évaluations
Développeur hanzichi
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/hanzichi/github-remarks
URL de la Page d'Aide https://github.com/hanzichi/github-remarks/issues
Langues Prises en Charge zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Remarks",
    "manifest_version": 2,
    "version": "1.2.1",
    "description": "a chrome extension that can give github repos your own remarks",
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "browser_action": {
        "default_title": "",
        "default_icon": {
            "19": "icons\/icon_19.png",
            "38": "icons\/icon_38.png"
        }
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/*"
            ],
            "js": [
                "content-scripts\/repoDetail.js"
            ],
            "css": [],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "js": [
                "lib\/jquery.min.js",
                "lib\/list.min.js",
                "content-scripts\/stars.js"
            ],
            "css": [],
            "run_at": "document_end"
        }
    ]
}