Stack Overflow Class Linker

This plugin will link class names in code blocks on Stack Overflow to the appropriate javadoc. Currently this only works with Java…

Cos'è Stack Overflow Class Linker?

Stack Overflow Class Linker è un'estensione di Chrome sviluppata da ITN Studio, e la sua funzione principale è "This plugin will link class names in code blocks on Stack Overflow to the appropriate javadoc. Currently this only works with Java…".

Scarica il file CRX dell'estensione Stack Overflow Class Linker

Scarica i file di estensione Stack Overflow Class Linker 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

                        This plugin will link class names in code blocks on Stack Overflow to the appropriate javadoc.

Currently this only works with Java 8 and Android classes; more support will be coming soon. 

This project is open source. For information on help with developing this extension, email [email protected]                    

Informazioni di Base sull'Estensione

Nome Stack Overflow Class Linker Stack Overflow Class Linker
ID hgbejffniepinbkfpbnblpdbdloliiia
URL Ufficiale https://chromewebstore.google.com/detail/stack-overflow-class-link/hgbejffniepinbkfpbnblpdbdloliiia
Descrizione This plugin will link class names in code blocks on Stack Overflow to the appropriate javadoc. Currently this only works with Java…
Dimensione del File 129 KB
Conteggio Installazioni 15
Versione Corrente 1.0.3
Ultimo Aggiornamento 2016-03-04
Data di Pubblicazione 2016-03-04
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore ITN Studio
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stack Overflow Class Linker",
    "version": "1.0.3",
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/stackoverflow.com\/*"
            ],
            "js": [
                "jquery-2.2.0.min.js",
                "classes\/java8Classes.json",
                "classes\/androidClasses.json",
                "findClassName.js",
                "content.js"
            ],
            "css": [
                "css.css"
            ]
        }
    ]
}