Java API Search (JDK 9-13)

Search the Java API directly within the Chrome Omnibox.

什麼是Java API Search (JDK 9-13)?

Java API Search (JDK 9-13)是由Andrew Watson開發的Chrome擴展程式,該擴展的主要功能是“Search the Java API directly within the Chrome Omnibox.”。

擴展截圖

screenshot
screenshot
screenshot

下載Java API Search (JDK 9-13)擴展crx文件

下載Java API Search (JDK 9-13)擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Java API Search (JDK 9-13) Java API Search (JDK 9-13)
ID nlgnliljjenkennnfnllgcolafcipoab
官方網址 https://chrome.google.com/webstore/detail/java-api-search-jdk-9-13/nlgnliljjenkennnfnllgcolafcipoab
簡介 Search the Java API directly within the Chrome Omnibox.
檔案大小 5.18 KB
安裝次數 892
目前版本 0.0.1.2
更新時間 2019-10-06
上架時間 2019-10-06
評分 4.75/5 共 4 次評分
開發者 Andrew Watson
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/awwsmm/java-api-search
說明頁面URL https://github.com/awwsmm/java-api-search
支援的語言 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
}