23andMe Raw Data

Looks up raw data value for SNP ids on page.

23andMe Raw Data란 무엇입니까?

23andMe Raw Data은(는) unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Looks up raw data value for SNP ids on page."입니다.

23andMe Raw Data 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        23andMe Raw Data Chrome Extension. Looks up your raw data for all the SNPs on a page.

Click the 23andMe extension icon, and then click on 'Get data'. Now a tooltip shows up when you hover over the SNP id with your raw data.

You can also sign in and out of the extension.

23andMe uses positive stranding for all raw data.

*This is an advanced view of all the uninterpreted raw genotype data, including data that is not used in 23andMe reports. This data has undergone a general quality review however only a subset of markers have been individually validated for accuracy. As such, the data from 23andMe's Browse Raw Data feature is suitable only for research, educational, and informational use and not for medical, diagnostic or other use.                    

확장 프로그램 기본 정보

이름 23andMe Raw Data 23andMe Raw Data
ID egbgkhkkpgcijmpgpmflicaelhladjba
공식 URL https://chrome.google.com/webstore/detail/23andme-raw-data/egbgkhkkpgcijmpgpmflicaelhladjba
설명 Looks up raw data value for SNP ids on page.
파일 크기 112 KB
설치 횟수 352
현재 버전 1.0.4
최근 업데이트 2017-03-07
출시 날짜 2017-03-07
평점 5.00/5 총 2 개의 평점
개발자 unknown
결제 유형 free
확장 프로그램 웹 사이트 https://www.23andme.com
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "23andMe Raw Data",
    "description": "Looks up raw data value for SNP ids on page.",
    "version": "1.0.4",
    "icons": {
        "16": "favicon-16x16.png"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "ttam_background.js",
            "jquery-3.1.1.min.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Click Get data then mouse over the SNP id",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/api.23andme.com\/*"
            ],
            "js": [
                "jquery-3.1.1.min.js",
                "login.js"
            ]
        }
    ]
}