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文件
下载23andMe Raw Data扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| 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"
]
}
]
} | |