Android SDK Search

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

Co to jest Android SDK Search?

Android SDK Search to rozszerzenie Chrome opracowane przez Jake Wharton, a jego główną funkcją jest „Adds an 'ad' Omnibox command and 'view source' links for the Android SDK”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Android SDK Search

Pobierz pliki rozszerzeń Android SDK Search w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Android SDK Search Android SDK Search
ID elihjfnjglabmkeonphlglkpjppchoco
Oficjalny URL https://chromewebstore.google.com/detail/android-sdk-search/elihjfnjglabmkeonphlglkpjppchoco
Opis Adds an 'ad' Omnibox command and 'view source' links for the Android SDK
Rozmiar pliku 183 KB
Liczba instalacji 4,091
Aktualna Wersja 1.4.1.0
Ostatnia Aktualizacja 2019-04-09
Data Publikacji 2019-04-09
Ocena 4.42/5 Łącznie 19 Oceny
Deweloper Jake Wharton
Typ Płatności free
Strona Rozszerzenia https://github.com/JakeWharton/SDKSearch
Obsługiwane Języki 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\/"
    ]
}