Javadoc Redirector

Redirects you automatically to the Java 8 Javadoc.

ما هو Javadoc Redirector؟

Javadoc Redirector هو إضافة Chrome تم تطويرها بواسطة z3ntu، والميزة الرئيسية لها هي "Redirects you automatically to the Java 8 Javadoc.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Javadoc Redirector

قم بتنزيل ملفات الامتداد Javadoc Redirector بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    }
}