Android SDK Search

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

Cos'è Android SDK Search?

Android SDK Search è un'estensione di Chrome sviluppata da Jake Wharton, e la sua funzione principale è "Adds an 'ad' Omnibox command and 'view source' links for the Android SDK".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Android SDK Search

Scarica i file di estensione Android SDK Search in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Android SDK Search Android SDK Search
ID elihjfnjglabmkeonphlglkpjppchoco
URL Ufficiale https://chromewebstore.google.com/detail/android-sdk-search/elihjfnjglabmkeonphlglkpjppchoco
Descrizione Adds an 'ad' Omnibox command and 'view source' links for the Android SDK
Dimensione del File 183 KB
Conteggio Installazioni 4,091
Versione Corrente 1.4.1.0
Ultimo Aggiornamento 2019-04-09
Data di Pubblicazione 2019-04-09
Valutazione 4.42/5 Totale 19 Valutazioni
Sviluppatore Jake Wharton
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/JakeWharton/SDKSearch
Lingue Supportate 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\/"
    ]
}