Android SDK Search
Adds an 'ad' Omnibox command and 'view source' links for the Android SDK
Qu'est-ce que Android SDK Search ?
Android SDK Search est une extension Chrome développée par Jake Wharton, et sa fonction principale est "Adds an 'ad' Omnibox command and 'view source' links for the Android SDK".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Android SDK Search
Téléchargez les fichiers d'extension Android SDK Search au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Android SDK Search |
ID | elihjfnjglabmkeonphlglkpjppchoco |
URL Officiel | https://chromewebstore.google.com/detail/android-sdk-search/elihjfnjglabmkeonphlglkpjppchoco |
Description | Adds an 'ad' Omnibox command and 'view source' links for the Android SDK |
Taille du Fichier | 183 KB |
Nombre d'Installations | 4,091 |
Version Actuelle | 1.4.1.0 |
Dernière Mise à Jour | 2019-04-09 |
Date de Publication | 2019-04-09 |
Évaluation | 4.42/5 Total 19 Évaluations |
Développeur | Jake Wharton |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/JakeWharton/SDKSearch |
Langues Prises en Charge | 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\/" ] } |