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…

Wat is Stack Overflow Class Linker?

Stack Overflow Class Linker is een Chrome-extensie ontwikkeld door ITN Studio, en de belangrijkste functie is "This plugin will link class names in code blocks on Stack Overflow to the appropriate javadoc. Currently this only works with Java…".

Download het CRX-bestand van de extensie Stack Overflow Class Linker

Download Stack Overflow Class Linker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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]                    

Basisinformatie over de Extensie

Naam Stack Overflow Class Linker Stack Overflow Class Linker
ID hgbejffniepinbkfpbnblpdbdloliiia
Officiële URL https://chromewebstore.google.com/detail/stack-overflow-class-link/hgbejffniepinbkfpbnblpdbdloliiia
Beschrijving This plugin will link class names in code blocks on Stack Overflow to the appropriate javadoc. Currently this only works with Java…
Bestandsgrootte 129 KB
Aantal Installaties 15
Huidige Versie 1.0.3
Laatst Bijgewerkt 2016-03-04
Publicatiedatum 2016-03-04
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar ITN Studio
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}