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 με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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
        }
    ]
}