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開發的Chrome擴展程式,該擴展的主要功能是“This extensions handles links from the developer console to one of the samples.”。
擴展截圖
下載Bring me back Android Samples擴展crx文件
下載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 |
ID | hahldanggafjgdnjpokhcigcjpflgpkm |
官方網址 | 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 } ] } |