TCGA.intent
A Web Intent service to download files from the open-access HTTP directory of TCGA.
TCGA.intent क्या है?
TCGA.intent Alexander Grueneberg द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Web Intent service to download files from the open-access HTTP directory of TCGA."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में TCGA.intent एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } |