Android SDK Search

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

ما هو Android SDK Search؟

Android SDK Search هو إضافة Chrome تم تطويرها بواسطة Jake Wharton، والميزة الرئيسية لها هي "Adds an 'ad' Omnibox command and 'view source' links for the Android SDK".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Android SDK Search

قم بتنزيل ملفات الامتداد Android SDK Search بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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\/"
    ]
}