TCGA.intent
A Web Intent service to download files from the open-access HTTP directory of TCGA.
TCGA.intentคืออะไร?
TCGA.intent เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alexander Grueneberg และคุณลักษณะหลักของมันคือ "A Web Intent service to download files from the open-access HTTP directory of TCGA."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TCGA.intent
ดาวน์โหลดไฟล์ส่วนขยาย TCGA.intent ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
NOTE: Support for Web Intents was removed in Chrome 24, so this app will not work anymore. It is kept on the Chrome Web Store for historic reasons only. ----- TCGA.intent enables you to download files from the open-access HTTP directory of The Cancer Genome Atlas (TCGA) from within the browser—without using or maintaining a proxy server. TCGA.intent uses Web Intents, a service discovery and light-weight RPC mechanism for Web apps. All you have to do to use TCGA.intent in your Web app is to create an Intent that uses the following action–type combination: http://mathbiol.org/intents/tcga/download [text/uri-list] Code and documentation available on GitHub: https://github.com/agrueneberg/TCGA.intent
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | hkegdmjmcjagpknioapofjdokkfijolk |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/tcgaintent/hkegdmjmcjagpknioapofjdokkfijolk |
คำอธิบาย | A Web Intent service to download files from the open-access HTTP directory of TCGA. |
ขนาดไฟล์ | 96.71 KB |
จำนวนการติดตั้ง | 11 |
เวอร์ชันปัจจุบัน | 0.0.2 |
อัปเดตครั้งล่าสุด | 2014-12-04 |
วันที่เผยแพร่ | 2014-12-04 |
ผู้พัฒนา | Alexander Grueneberg |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "TCGA.intent", "description": "A Web Intent service to download files from the open-access HTTP directory of TCGA.", "version": "0.0.2", "background": { "page": "background.html" }, "permissions": [ "*:\/\/tcga-data.nci.nih.gov\/" ], "intents": { "http:\/\/mathbiol.org\/intents\/tcga\/download": [ { "type": [ "text\/uri-list" ], "title": "Download files from TCGA", "href": "background.html", "disposition": "inline" } ] }, "content_security_policy": "default-src 'self'; connect-src https:\/\/tcga-data.nci.nih.gov http:\/\/tcga-data.nci.nih.gov; style-src 'self' 'unsafe-inline'", "icons": { "16": "icon_16.png" } } |