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."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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 |
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 } ] } |