Java API Search (JDK 9-13)

Search the Java API directly within the Chrome Omnibox.

Java API Search (JDK 9-13) là gì?

Java API Search (JDK 9-13) là một tiện ích mở rộng Chrome được phát triển bởi Andrew Watson, và tính năng chính của nó là "Search the Java API directly within the Chrome Omnibox.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Java API Search (JDK 9-13)

Tải xuống các tệp mở rộng Java API Search (JDK 9-13) dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Java API Search (JDK 9-13) Java API Search (JDK 9-13)
ID nlgnliljjenkennnfnllgcolafcipoab
URL Chính Thức https://chrome.google.com/webstore/detail/java-api-search-jdk-9-13/nlgnliljjenkennnfnllgcolafcipoab
Mô tả Search the Java API directly within the Chrome Omnibox.
Kích Thước Tệp 5.18 KB
Số Lần Cài Đặt 892
Phiên Bản Hiện Tại 0.0.1.2
Cập Nhật Lần Cuối 2019-10-06
Ngày Phát Hành 2019-10-06
Đánh Giá 4.75/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Andrew Watson
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/awwsmm/java-api-search
URL Trang Trợ Giúp https://github.com/awwsmm/java-api-search
Ngôn Ngữ Được Hỗ Trợ 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
}