Java API Search (JDK 9-13)
Search the Java API directly within the Chrome Omnibox.
什么是Java API Search (JDK 9-13)?
Java API Search (JDK 9-13)是由Andrew Watson开发的Chrome扩展程序,该扩展的主要功能是“Search the Java API directly within the Chrome Omnibox.”。
扩展截图
下载Java API Search (JDK 9-13)扩展crx文件
下载Java API Search (JDK 9-13)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension allows you to search the Java API directly from the Chrome Omnibox. Simply type "javadoc", then a space or a tab and a search term of interest (e.g. "ArrayList", "Map.Entry") and you will be taken to the most relevant page within Oracle's public Javadocs. You can specify the JDK version (9 through 13, inclusive) by putting it before the search term (e.g. "javadoc 12 HashMap"). This is very much a work in progress, so please be patient and report any and all bugs / issues on the extension's GitHub page at github.com/awwsmm/java-api-search.
扩展基本信息
名称 | ![]() |
ID | nlgnliljjenkennnfnllgcolafcipoab |
官方URL | https://chrome.google.com/webstore/detail/java-api-search-jdk-9-13/nlgnliljjenkennnfnllgcolafcipoab |
简介 | Search the Java API directly within the Chrome Omnibox. |
文件大小 | 5.18 KB |
安装次数 | 892 |
当前版本 | 0.0.1.2 |
更新时间 | 2019-10-06 |
上架时间 | 2019-10-06 |
评分 | 4.75/5 共4次评分 |
开发者 | Andrew Watson |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/awwsmm/java-api-search |
帮助页面URL | https://github.com/awwsmm/java-api-search |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Java API Search (JDK 9-13)", "description": "Search the Java API directly within the Chrome Omnibox.", "version": "0.0.1.2", "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "tabs", "https:\/\/docs.oracle.com\/javase\/*\/docs\/api\/*", "https:\/\/docs.oracle.com\/en\/java\/javase\/*\/docs\/api\/*" ], "omnibox": { "keyword": "javadoc" }, "manifest_version": 2 } |