Bring me back Android Samples

This extensions handles links from the developer console to one of the samples.

Bring me back Android Samples là gì?

Bring me back Android Samples là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "This extensions handles links from the developer console to one of the samples.".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Bring me back Android Samples

Tải xuống các tệp mở rộng Bring me back Android Samples 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 extension looks up links on the Android Developer Reference website, and tries to match links to Android Samples.

Instead of showing that f*** empty page from the doc, it just damn shows the sample instead!!

That way you can always browse the source quickly from your browser instead of having to browse your hard drive and look up the sample code.
And, you don't have to download the Android SDK! Just this tiny extension.                    

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

Tên Bring me back Android Samples Bring me back Android Samples
ID hahldanggafjgdnjpokhcigcjpflgpkm
URL Chính Thức https://chromewebstore.google.com/detail/bring-me-back-android-sam/hahldanggafjgdnjpokhcigcjpflgpkm
Mô tả This extensions handles links from the developer console to one of the samples.
Kích Thước Tệp 7.38 KB
Số Lần Cài Đặt 95
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2013-02-20
Ngày Phát Hành 2013-02-20
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bring me back Android Samples",
    "description": "This extensions handles links from the developer console to one of the samples.",
    "version": "0.1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "*:\/\/developer.android.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/developer.android.com\/*"
            ],
            "js": [
                "BMBAS.js"
            ],
            "all_frames": true
        }
    ]
}