Javadoc Redirector

Redirects you automatically to the Java 8 Javadoc.

Javadoc Redirector란 무엇입니까?

Javadoc Redirector은(는) z3ntu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Redirects you automatically to the Java 8 Javadoc."입니다.

확장 프로그램 스크린샷

screenshot

Javadoc Redirector 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Are you tired of getting Javadoc search results from Java 7?
Not anymore! Because 'Javadoc Redirector' automatically redirects you from those Java 7 pages to Java 8 ones!

A simple extension that just redirects you from e.g. https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html to the Java 8 equivalent: https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html as different search machines still show Java 7 as first result.                    

확장 프로그램 기본 정보

이름 Javadoc Redirector Javadoc Redirector
ID pkpckmephcfffdfjemgnekclglhpkcom
공식 URL https://chromewebstore.google.com/detail/javadoc-redirector/pkpckmephcfffdfjemgnekclglhpkcom
설명 Redirects you automatically to the Java 8 Javadoc.
파일 크기 26.16 KB
설치 횟수 369
현재 버전 1.2
최근 업데이트 2022-09-10
출시 날짜 2016-09-13
평점 4.67/5 총 6 개의 평점
개발자 z3ntu
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/z3ntu/JavadocRedirector
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Javadoc Redirector",
    "description": "Redirects you automatically to the Java 8 Javadoc.",
    "version": "1.2",
    "author": "z3ntu",
    "homepage_url": "https:\/\/z3ntu.github.io",
    "content_scripts": [
        {
            "js": [
                "js\/replace.js"
            ],
            "matches": [
                "*:\/\/docs.oracle.com\/javase\/*\/docs\/api\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "*:\/\/docs.oracle.com\/javase\/*"
    ],
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    }
}