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 هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "This extensions handles links from the developer console to one of the samples.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Bring me back Android Samples

قم بتنزيل ملفات الامتداد Bring me back Android Samples بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
        }
    ]
}