Javadoc Redirector
Redirects you automatically to the Java 8 Javadoc.
Co to jest Javadoc Redirector?
Javadoc Redirector to rozszerzenie Chrome opracowane przez z3ntu, a jego główną funkcją jest „Redirects you automatically to the Java 8 Javadoc.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Javadoc Redirector
Pobierz pliki rozszerzeń Javadoc Redirector w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Javadoc Redirector |
ID | pkpckmephcfffdfjemgnekclglhpkcom |
Oficjalny URL | https://chromewebstore.google.com/detail/javadoc-redirector/pkpckmephcfffdfjemgnekclglhpkcom |
Opis | Redirects you automatically to the Java 8 Javadoc. |
Rozmiar pliku | 26.16 KB |
Liczba instalacji | 369 |
Aktualna Wersja | 1.2 |
Ostatnia Aktualizacja | 2022-09-10 |
Data Publikacji | 2016-09-13 |
Ocena | 4.67/5 Łącznie 6 Oceny |
Deweloper | z3ntu |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/z3ntu/JavadocRedirector |
Obsługiwane Języki | 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" } } |