TCGA.intent
A Web Intent service to download files from the open-access HTTP directory of TCGA.
什么是TCGA.intent?
TCGA.intent是由Alexander Grueneberg开发的Chrome扩展程序,该扩展的主要功能是“A Web Intent service to download files from the open-access HTTP directory of TCGA.”。
扩展截图
下载TCGA.intent扩展crx文件
下载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"
}
} | |