JavaAPI-Redirector

Redirect to the latest Java SE API document.

JavaAPI-Redirector là gì?

JavaAPI-Redirector là một tiện ích mở rộng Chrome được phát triển bởi https://yuji.software, và tính năng chính của nó là "Redirect to the latest Java SE API document.".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng JavaAPI-Redirector

Tải xuống các tệp mở rộng JavaAPI-Redirector 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

                        Redirect to latest Java SE API document.

https://docs.oracle.com/javase/8/docs/api/java/lang/String.html
→ https://docs.oracle.com/javase/17/docs/api/java/lang/String.html

Redirect the Java API version can be selected (Java 6 - 21).                    

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

Tên JavaAPI-Redirector JavaAPI-Redirector
ID kildmhgekjfidnaohdmopdcoibigchkj
URL Chính Thức https://chromewebstore.google.com/detail/javaapi-redirector/kildmhgekjfidnaohdmopdcoibigchkj
Mô tả Redirect to the latest Java SE API document.
Kích Thước Tệp 25.88 KB
Số Lần Cài Đặt 707
Phiên Bản Hiện Tại 1.3.13
Cập Nhật Lần Cuối 2023-12-11
Ngày Phát Hành 2020-05-27
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://yuji.software
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/YujiSoftware/JavaAPI-Redirector
URL Trang Trợ Giúp https://github.com/YujiSoftware/JavaAPI-Redirector/issues
Ngôn Ngữ Được Hỗ Trợ ms,en,fr,es,it,pt-BR,ru,ar,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JavaAPI-Redirector",
    "version": "1.3.13",
    "description": "__MSG_extDescription__",
    "default_locale": "en",
    "applications": {
        "gecko": {
            "id": "{592a7624-ad88-4d43-aec3-e940dcad653a}"
        }
    },
    "icons": {
        "48": "icons\/icon.png",
        "128": "icons\/icon_128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/docs.oracle.com\/*"
            ],
            "js": [
                "search-index.js",
                "document.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}