Bring me back Android Samples

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

Co to jest Bring me back Android Samples?

Bring me back Android Samples to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „This extensions handles links from the developer console to one of the samples.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Bring me back Android Samples

Pobierz pliki rozszerzeń Bring me back Android Samples w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Bring me back Android Samples Bring me back Android Samples
ID hahldanggafjgdnjpokhcigcjpflgpkm
Oficjalny URL https://chromewebstore.google.com/detail/bring-me-back-android-sam/hahldanggafjgdnjpokhcigcjpflgpkm
Opis This extensions handles links from the developer console to one of the samples.
Rozmiar pliku 7.38 KB
Liczba instalacji 95
Aktualna Wersja 0.1.0
Ostatnia Aktualizacja 2013-02-20
Data Publikacji 2013-02-20
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki 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
        }
    ]
}