Android SDK Search

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

Android SDK Search क्या है?

Android SDK Search Jake Wharton द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds an 'ad' Omnibox command and 'view source' links for the Android SDK"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Android SDK Search एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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\/"
    ]
}