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ファイルをダウンロード

Javadoc Redirector拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}