Bring me back Android Samples
This extensions handles links from the developer console to one of the samples.
Qu'est-ce que Bring me back Android Samples ?
Bring me back Android Samples est une extension Chrome développée par Unknown, et sa fonction principale est "This extensions handles links from the developer console to one of the samples.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Bring me back Android Samples
Téléchargez les fichiers d'extension Bring me back Android Samples au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Bring me back Android Samples |
ID | hahldanggafjgdnjpokhcigcjpflgpkm |
URL Officiel | https://chromewebstore.google.com/detail/bring-me-back-android-sam/hahldanggafjgdnjpokhcigcjpflgpkm |
Description | This extensions handles links from the developer console to one of the samples. |
Taille du Fichier | 7.38 KB |
Nombre d'Installations | 95 |
Version Actuelle | 0.1.0 |
Dernière Mise à Jour | 2013-02-20 |
Date de Publication | 2013-02-20 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | Unknown |
Type de Paiement | free |
Langues Prises en Charge | 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 } ] } |