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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } } |