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) - это расширение Chrome, разработанное Andrew Watson, и его основная функция - "Search the Java API directly within the Chrome Omnibox.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Java API Search (JDK 9-13)

Скачайте файлы расширений 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.                    

Основная информация о расширении

Название Java API Search (JDK 9-13) Java API Search (JDK 9-13)
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
}