Javadoc Redirector
Redirects you automatically to the Java 8 Javadoc.
什么是Javadoc Redirector?
Javadoc Redirector是由z3ntu开发的Chrome扩展程序,该扩展的主要功能是“Redirects you automatically to the Java 8 Javadoc.”。
扩展截图
下载Javadoc Redirector扩展crx文件
下载Javadoc Redirector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| 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"
}
} | |