23andMe Raw Data

Looks up raw data value for SNP ids on page.

23andMe Raw Dataคืออะไร?

23andMe Raw Data เป็นส่วนขยายของ Chrome ที่พัฒนาโดย unknown และคุณลักษณะหลักของมันคือ "Looks up raw data value for SNP ids on page."

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย 23andMe Raw Data

ดาวน์โหลดไฟล์ส่วนขยาย 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ 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"
            ]
        }
    ]
}