Bring me back Android Samples

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

Bring me back Android Samples란 무엇입니까?

Bring me back Android Samples은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extensions handles links from the developer console to one of the samples."입니다.

확장 프로그램 스크린샷

screenshot

Bring me back Android Samples 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Bring me back Android Samples Bring me back Android Samples
ID hahldanggafjgdnjpokhcigcjpflgpkm
공식 URL https://chromewebstore.google.com/detail/bring-me-back-android-sam/hahldanggafjgdnjpokhcigcjpflgpkm
설명 This extensions handles links from the developer console to one of the samples.
파일 크기 7.38 KB
설치 횟수 95
현재 버전 0.1.0
최근 업데이트 2013-02-20
출시 날짜 2013-02-20
평점 5.00/5 총 2 개의 평점
개발자 Unknown
결제 유형 free
지원되는 언어 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
        }
    ]
}