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…

Qu'est-ce que Stack Overflow Class Linker ?

Stack Overflow Class Linker est une extension Chrome développée par ITN Studio, et sa fonction principale est "This plugin will link class names in code blocks on Stack Overflow to the appropriate javadoc. Currently this only works with Java…".

Télécharger le fichier CRX de l'extension Stack Overflow Class Linker

Téléchargez les fichiers d'extension Stack Overflow Class Linker 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

                        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]                    

Informations de Base sur l'Extension

Nom Stack Overflow Class Linker Stack Overflow Class Linker
ID hgbejffniepinbkfpbnblpdbdloliiia
URL Officiel https://chromewebstore.google.com/detail/stack-overflow-class-link/hgbejffniepinbkfpbnblpdbdloliiia
Description This plugin will link class names in code blocks on Stack Overflow to the appropriate javadoc. Currently this only works with Java…
Taille du Fichier 129 KB
Nombre d'Installations 15
Version Actuelle 1.0.3
Dernière Mise à Jour 2016-03-04
Date de Publication 2016-03-04
Évaluation 5.00/5 Total 1 Évaluations
Développeur ITN Studio
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}