DNArboretum

Presents 23andMe and FTDNA Family Trees in Ahnentafel Format

DNArboretumคืออะไร?

DNArboretum เป็นส่วนขยายของ Chrome ที่พัฒนาโดย neanderling และคุณลักษณะหลักของมันคือ "Presents 23andMe and FTDNA Family Trees in Ahnentafel Format"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DNArboretum

ดาวน์โหลดไฟล์ส่วนขยาย DNArboretum ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension for FTDNA's Family Trees and for 23andMe's "classic" Family Trees (i.e., 23andMe trees entered before their discontinuation in 2015) extracts information from a displayed tree and presents it as a list in Ahnentafel format. When available, ancestors to at least 7th great grandparents (8th cousin relationships) are displayed at 23andMe, and up to 15 generations are displayed at FTDNA. Clicking on an individual's entry will highlight their descendants and their ancestors based on the selected inheritance mode (autosomal, X chromosome, mitochondrial or Y chromosome). 

Step 1: Load a family tree (wait for the "loading" icon to stop spinning)
Step 2: Click on the DNArboretum icon located on the right hand side of the URL bar (see screenshot)
Step 3: Wait for the "loading" icon to stop spinning, this can take some time for complex trees
Step 4: The DNArboretum page will automatically open
Step 5: Select the Inheritance mode of interest (defaults to autosomal)
Step 6: Click and explore; search for names and places

For more information, 23andMe users please see this thread: https://www.23andme.com/you/community/thread/29714/

Version 2.0.0.2 circumvents a Chrome bug that prevented FTDNA trees from displaying consistently but requires the user to perform a redundant button push (for the technically minded, setTimeout() does not achieve the desired result). Not elegant, but it works again.

Version 2.0.0.3 fixes a bug that caused some ancestors to be omitted from FTDNA trees

Version 2.0.0.4 may address certain errors in trees with multiple spouses                    

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

ชื่อ DNArboretum DNArboretum
ID oekcehcnbnfmeimggmkfliochkojkaej
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/dnarboretum/oekcehcnbnfmeimggmkfliochkojkaej
คำอธิบาย Presents 23andMe and FTDNA Family Trees in Ahnentafel Format
ขนาดไฟล์ 31.87 KB
จำนวนการติดตั้ง 3,372
เวอร์ชันปัจจุบัน 2.0.0.4
อัปเดตครั้งล่าสุด 2018-04-14
วันที่เผยแพร่ 2018-04-13
คะแนน 4.03/5 รวมทั้งหมด 31 คะแนน
ผู้พัฒนา neanderling
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DNArboretum",
    "version": "2.0.0.4",
    "description": "Presents 23andMe and FTDNA Family Trees in Ahnentafel Format",
    "background": {
        "page": "background.html"
    },
    "page_action": {
        "default_icon": "DNArboretum-19.png",
        "default_title": "View Family Tree in Ahnentafel Format"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.23andme.com\/family\/tree\/*",
                "https:\/\/www.familytreedna.com\/my\/family-tree\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "permissions": [
        "tabs",
        "https:\/\/www.23andme.com\/family\/tree\/*",
        "https:\/\/www.familytreedna.com\/my\/family-tree\/*"
    ],
    "icons": {
        "16": "DNArboretum-16.png",
        "19": "DNArboretum-19.png",
        "48": "DNArboretum-48.png",
        "128": "DNArboretum-128.png"
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "treecode.js"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/www.23andme.com\/family\/tree\/*",
            "https:\/\/www.familytreedna.com\/my\/family-tree\/*"
        ]
    }
}