Javadoc Redirector
Redirects you automatically to the Java 8 Javadoc.
Apa itu Javadoc Redirector?
Javadoc Redirector adalah ekstensi Chrome yang dikembangkan oleh z3ntu, dan fitur utamanya adalah "Redirects you automatically to the Java 8 Javadoc.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Javadoc Redirector
Unduh file ekstensi Javadoc Redirector dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Javadoc Redirector |
ID | pkpckmephcfffdfjemgnekclglhpkcom |
URL Resmi | https://chromewebstore.google.com/detail/javadoc-redirector/pkpckmephcfffdfjemgnekclglhpkcom |
Deskripsi | Redirects you automatically to the Java 8 Javadoc. |
Ukuran File | 26.16 KB |
Jumlah Instalasi | 369 |
Versi Saat Ini | 1.2 |
Terakhir Diperbarui | 2022-09-10 |
Tanggal Publikasi | 2016-09-13 |
Penilaian | 4.67/5 Total 6 Penilaian |
Pengembang | z3ntu |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/z3ntu/JavadocRedirector |
Bahasa yang Didukung | 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" } } |