Java API Search (JDK 9-13)

Search the Java API directly within the Chrome Omnibox.

Was ist Java API Search (JDK 9-13)?

Java API Search (JDK 9-13) ist eine Chrome-Erweiterung, die von Andrew Watson entwickelt wurde, und ihr Hauptmerkmal ist "Search the Java API directly within the Chrome Omnibox.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Java API Search (JDK 9-13)-Erweiterungs-CRX-Datei herunterladen

Laden Sie Java API Search (JDK 9-13)-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension allows you to search the Java API directly from the Chrome Omnibox. Simply type "javadoc", then a space or a tab and a search term of interest (e.g. "ArrayList", "Map.Entry") and you will be taken to the most relevant page within Oracle's public Javadocs. You can specify the JDK version (9 through 13, inclusive) by putting it before the search term (e.g. "javadoc 12 HashMap").

This is very much a work in progress, so please be patient and report any and all bugs / issues on the extension's GitHub page at github.com/awwsmm/java-api-search.                    

Grundlegende Informationen zur Erweiterung

Name Java API Search (JDK 9-13) Java API Search (JDK 9-13)
ID nlgnliljjenkennnfnllgcolafcipoab
Offizielle URL https://chrome.google.com/webstore/detail/java-api-search-jdk-9-13/nlgnliljjenkennnfnllgcolafcipoab
Beschreibung Search the Java API directly within the Chrome Omnibox.
Dateigröße 5.18 KB
Installationsanzahl 892
Aktuelle Version 0.0.1.2
Letztes Update 2019-10-06
Veröffentlichungsdatum 2019-10-06
Bewertung 4.75/5 Insgesamt 4 Bewertungen
Entwickler Andrew Watson
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/awwsmm/java-api-search
Hilfeseite URL https://github.com/awwsmm/java-api-search
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Java API Search (JDK 9-13)",
    "description": "Search the Java API directly within the Chrome Omnibox.",
    "version": "0.0.1.2",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "https:\/\/docs.oracle.com\/javase\/*\/docs\/api\/*",
        "https:\/\/docs.oracle.com\/en\/java\/javase\/*\/docs\/api\/*"
    ],
    "omnibox": {
        "keyword": "javadoc"
    },
    "manifest_version": 2
}