Android SDK Search

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

Android SDK Search là gì?

Android SDK Search là một tiện ích mở rộng Chrome được phát triển bởi Jake Wharton, và tính năng chính của nó là "Adds an 'ad' Omnibox command and 'view source' links for the Android SDK".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Android SDK Search

Tải xuống các tệp mở rộng Android SDK Search dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Android SDK Search Android SDK Search
ID elihjfnjglabmkeonphlglkpjppchoco
URL Chính Thức https://chromewebstore.google.com/detail/android-sdk-search/elihjfnjglabmkeonphlglkpjppchoco
Mô tả Adds an 'ad' Omnibox command and 'view source' links for the Android SDK
Kích Thước Tệp 183 KB
Số Lần Cài Đặt 4,091
Phiên Bản Hiện Tại 1.4.1.0
Cập Nhật Lần Cuối 2019-04-09
Ngày Phát Hành 2019-04-09
Đánh Giá 4.42/5 Tổng số 19 Đánh Giá
Nhà Phát Triển Jake Wharton
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/JakeWharton/SDKSearch
Ngôn Ngữ Được Hỗ Trợ 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\/"
    ]
}