JavaAPI-Redirector
Redirect to the latest Java SE API document.
什么是JavaAPI-Redirector?
JavaAPI-Redirector是由https://yuji.software开发的Chrome扩展程序,该扩展的主要功能是“Redirect to the latest Java SE API document.”。
扩展截图
下载JavaAPI-Redirector扩展crx文件
下载JavaAPI-Redirector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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).
扩展基本信息
名称 | JavaAPI-Redirector |
ID | kildmhgekjfidnaohdmopdcoibigchkj |
官方URL | https://chromewebstore.google.com/detail/javaapi-redirector/kildmhgekjfidnaohdmopdcoibigchkj |
简介 | Redirect to the latest Java SE API document. |
文件大小 | 25.88 KB |
安装次数 | 707 |
当前版本 | 1.3.13 |
更新时间 | 2023-12-11 |
上架时间 | 2020-05-27 |
评分 | 5.00/5 共1次评分 |
开发者 | https://yuji.software |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/YujiSoftware/JavaAPI-Redirector |
帮助页面URL | https://github.com/YujiSoftware/JavaAPI-Redirector/issues |
支持的语言 | 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 } } |