Github Annotator

Show user details and repository info in a tooltip.

Cos'è Github Annotator?

Github Annotator è un'estensione di Chrome sviluppata da Mesut Tasci, e la sua funzione principale è "Show user details and repository info in a tooltip.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Github Annotator

Scarica i file di estensione Github Annotator 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

                        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                    

Informazioni di Base sull'Estensione

Nome Github Annotator Github Annotator
ID epmbkocbfiejffcjahjhncadlipmdime
URL Ufficiale https://chromewebstore.google.com/detail/github-annotator/epmbkocbfiejffcjahjhncadlipmdime
Descrizione Show user details and repository info in a tooltip.
Dimensione del File 81.68 KB
Conteggio Installazioni 214
Versione Corrente 2.1
Ultimo Aggiornamento 2017-10-22
Data di Pubblicazione 2017-10-22
Valutazione 4.50/5 Totale 2 Valutazioni
Sviluppatore Mesut Tasci
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://github.com/mesuutt/github-annotator
URL della Pagina di Aiuto https://github.com/mesuutt/github-annotator/issues
Lingue Supportate 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"
    }
}