JavaAPI-Redirector
Redirect to the latest Java SE API document.
What is JavaAPI-Redirector?
JavaAPI-Redirector is a Chrome extension developed by https://yuji.software, and its main feature is "Redirect to the latest Java SE API document.".
Extension Screenshots
Download JavaAPI-Redirector Extension CRX File
Download JavaAPI-Redirector extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Redirect to latest Java SE API document. https://docs.oracle.com/javase/8/docs/api/java/lang/String.html → https://docs.oracle.com/javase/17/docs/api/java/lang/String.html Redirect the Java API version can be selected (Java 6 - 21).
Extension Basic Information
Name | JavaAPI-Redirector |
ID | kildmhgekjfidnaohdmopdcoibigchkj |
Official URL | https://chromewebstore.google.com/detail/javaapi-redirector/kildmhgekjfidnaohdmopdcoibigchkj |
Description | Redirect to the latest Java SE API document. |
File Size | 25.88 KB |
Installation Count | 707 |
Current Version | 1.3.13 |
Last Updated | 2023-12-11 |
Publish Date | 2020-05-27 |
Rating | 5.00/5 Total 1 Ratings |
Developer | https://yuji.software |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/YujiSoftware/JavaAPI-Redirector |
Help Page URL | https://github.com/YujiSoftware/JavaAPI-Redirector/issues |
Supported Languages | ms,en,fr,es,it,pt-BR,ru,ar,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "JavaAPI-Redirector", "version": "1.3.13", "description": "__MSG_extDescription__", "default_locale": "en", "applications": { "gecko": { "id": "{592a7624-ad88-4d43-aec3-e940dcad653a}" } }, "icons": { "48": "icons\/icon.png", "128": "icons\/icon_128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/docs.oracle.com\/*" ], "js": [ "search-index.js", "document.js" ], "run_at": "document_start" } ], "options_ui": { "page": "options.html", "chrome_style": true } } |