Android SDK Search

Adds an 'ad' Omnibox command and 'view source' links for the Android SDK

Что такое Android SDK Search?

Android SDK Search - это расширение Chrome, разработанное Jake Wharton, и его основная функция - "Adds an 'ad' Omnibox command and 'view source' links for the Android SDK".

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

screenshot
screenshot

Скачать файл CRX расширения Android SDK Search

Скачайте файлы расширений Android SDK Search в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This very simple extension does two things:

1. Adds an 'ad' command to the Chrome Omnibox. For example, typing 'ad ViewGro' will bring up a list of all class names in the Android SDK matching 'ViewGro'—selecting a list item navigates to the relevant Android SDK Reference URL on developer.android.com.

2. Adds a 'view source' link next to the SDK class name for class reference pages on developer.android.com. Clicking this link navigates to the relevant source file on android.googlesource.com.

Source code available at https://github.com/JakeWharton/SDKSearch                    

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

Название Android SDK Search Android SDK Search
ID elihjfnjglabmkeonphlglkpjppchoco
Официальный URL https://chromewebstore.google.com/detail/android-sdk-search/elihjfnjglabmkeonphlglkpjppchoco
Описание Adds an 'ad' Omnibox command and 'view source' links for the Android SDK
Размер файла 183 KB
Количество установок 4,091
Текущая Версия 1.4.1.0
Последнее Обновление 2019-04-09
Дата публикации 2019-04-09
Рейтинг 4.42/5 Всего 19 оценок
Разработчик Jake Wharton
Тип оплаты free
Официальный сайт расширения https://github.com/JakeWharton/SDKSearch
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Android SDK Search",
    "description": "Adds an 'ad' Omnibox command and 'view source' links for the Android SDK",
    "version": "1.4.1.0",
    "manifest_version": 2,
    "icons": {
        "16": "icon_16.png",
        "32": "icon_32.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "background": {
        "scripts": [
            "background.bundle.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/developer.android.com\/reference\/*"
            ],
            "js": [
                "content.bundle.js"
            ]
        }
    ],
    "omnibox": {
        "keyword": "ad"
    },
    "permissions": [
        "storage",
        "https:\/\/api.sdksearch.app\/"
    ]
}