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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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
}