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…

What is Stack Overflow Class Linker?

Stack Overflow Class Linker is a Chrome extension developed by ITN Studio, and its main feature is "This plugin will link class names in code blocks on Stack Overflow to the appropriate javadoc. Currently this only works with Java…".

Download Stack Overflow Class Linker Extension CRX File

Download Stack Overflow Class Linker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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]                    

Extension Basic Information

Name Stack Overflow Class Linker Stack Overflow Class Linker
ID hgbejffniepinbkfpbnblpdbdloliiia
Official URL 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…
File Size 129 KB
Installation Count 15
Current Version 1.0.3
Last Updated 2016-03-04
Publish Date 2016-03-04
Rating 5.00/5 Total 1 Ratings
Developer ITN Studio
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}