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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extensions handles links from the developer console to one of the samples."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Bring me back Android Samples एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
        }
    ]
}