Android SDK Search
Adds an 'ad' Omnibox command and 'view source' links for the Android SDK
What is Android SDK Search?
Android SDK Search is a Chrome extension developed by Jake Wharton, and its main feature is "Adds an 'ad' Omnibox command and 'view source' links for the Android SDK".
Extension Screenshots
Download Android SDK Search Extension CRX File
Download Android SDK Search extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Android SDK Search |
ID | elihjfnjglabmkeonphlglkpjppchoco |
Official URL | https://chromewebstore.google.com/detail/android-sdk-search/elihjfnjglabmkeonphlglkpjppchoco |
Description | Adds an 'ad' Omnibox command and 'view source' links for the Android SDK |
File Size | 183 KB |
Installation Count | 4,091 |
Current Version | 1.4.1.0 |
Last Updated | 2019-04-09 |
Publish Date | 2019-04-09 |
Rating | 4.42/5 Total 19 Ratings |
Developer | Jake Wharton |
Payment Type | free |
Extension Website | https://github.com/JakeWharton/SDKSearch |
Supported Languages | 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\/" ] } |