Bring me back Android Samples
This extensions handles links from the developer console to one of the samples.
Co je Bring me back Android Samples?
Bring me back Android Samples je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „This extensions handles links from the developer console to one of the samples.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Bring me back Android Samples
Stáhněte si soubory rozšíření Bring me back Android Samples ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Bring me back Android Samples |
ID | hahldanggafjgdnjpokhcigcjpflgpkm |
Oficiální URL | https://chromewebstore.google.com/detail/bring-me-back-android-sam/hahldanggafjgdnjpokhcigcjpflgpkm |
Popis | This extensions handles links from the developer console to one of the samples. |
Velikost souboru | 7.38 KB |
Počet instalací | 95 |
Aktuální Verze | 0.1.0 |
Poslední Aktualizace | 2013-02-20 |
Datum Vydání | 2013-02-20 |
Hodnocení | 5.00/5 Celkem 2 Hodnocení |
Vývojář | Unknown |
Typ Platby | free |
Podporované Jazyky | 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 } ] } |