Android SDK Search

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

什麼是Android SDK Search?

Android SDK Search是由Jake Wharton開發的Chrome擴展程式,該擴展的主要功能是“Adds an 'ad' Omnibox command and 'view source' links for the Android SDK”。

擴展截圖

screenshot
screenshot

下載Android SDK Search擴展crx文件

下載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
官方網址 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\/"
    ]
}