Github Annotator

Show user details and repository info in a tooltip.

Qu'est-ce que Github Annotator ?

Github Annotator est une extension Chrome développée par Mesut Tasci, et sa fonction principale est "Show user details and repository info in a tooltip.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Github Annotator

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

                        Show user,repo and gist informations in a tooltip at news feed. With this extension, you don't have to visit the user's or repos' own pages.

Extension source code:
https://github.com/mesuutt/github-annotator                    

Informations de Base sur l'Extension

Nom Github Annotator Github Annotator
ID epmbkocbfiejffcjahjhncadlipmdime
URL Officiel https://chromewebstore.google.com/detail/github-annotator/epmbkocbfiejffcjahjhncadlipmdime
Description Show user details and repository info in a tooltip.
Taille du Fichier 81.68 KB
Nombre d'Installations 214
Version Actuelle 2.1
Dernière Mise à Jour 2017-10-22
Date de Publication 2017-10-22
Évaluation 4.50/5 Total 2 Évaluations
Développeur Mesut Tasci
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://github.com/mesuutt/github-annotator
URL de la Page d'Aide https://github.com/mesuutt/github-annotator/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Annotator",
    "description": "Show user details and repository info in a tooltip.",
    "manifest_version": 2,
    "version": "2.1",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "jquery-1.9.1.min.js",
                "contentscript.js"
            ],
            "css": [
                "style.css"
            ],
            "matches": [
                "https:\/\/github.com\/"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html",
    "icons": {
        "128": "icons\/icon128.png",
        "48": "icons\/icon48.png",
        "16": "icons\/icon16.png"
    }
}