529renew

Tracks 23andMe DNA Matches using a local SQL database

529renew란 무엇입니까?

529renew은(는) CameronD73에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tracks 23andMe DNA Matches using a local SQL database"입니다.

확장 프로그램 스크린샷

screenshot

529renew 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Stores your 23andMe DNA Matches in a local database. Allows you to export to other analysis software such as GDAT and Gephi. It also lists shared segments and has a graphical display of overlapping segments shared and not shared between two people.

This is a reworking of the "529 and You" extension that is no longer available. This extension has a different database layout, but it can import csv files that were exported from 529 and You (provided that they included the unique ID code for each person).                    

확장 프로그램 기본 정보

이름 529renew 529renew
ID hgckkjajmcmbificinfabmaelboedjic
공식 URL https://chromewebstore.google.com/detail/529renew/hgckkjajmcmbificinfabmaelboedjic
설명 Tracks 23andMe DNA Matches using a local SQL database
파일 크기 864 KB
설치 횟수 231
현재 버전 2.0.1
최근 업데이트 2024-01-01
출시 날짜 2022-10-16
평점 5.00/5 총 1 개의 평점
개발자 CameronD73
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/CameronD73/529renew
개인정보 보호 정책 페이지 URL https://raw.githubusercontent.com/CameronD73/529renew/main/utils/PrivacyPolicy.txt
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "529renew",
    "version": "2.0.1",
    "description": "Tracks 23andMe DNA Matches using a local SQL database",
    "background": {
        "service_worker": "service.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/you.23andme.com\/profile\/*",
                "https:\/\/you.23andme.com\/p\/*\/profile\/*"
            ],
            "js": [
                "util\/basicQueue.js",
                "util\/page_23_utils.js",
                "util\/dates.js",
                "util\/validations.js",
                "save_segments.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        },
        {
            "matches": [
                "https:\/\/you.23andme.com\/family\/relatives\/*",
                "https:\/\/you.23andme.com\/p\/*\/family\/relatives\/*"
            ],
            "js": [
                "start_db_tab.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        },
        {
            "matches": [
                "https:\/\/you.23andme.com\/family\/relatives\/*",
                "https:\/\/you.23andme.com\/p\/*\/family\/relatives\/*"
            ],
            "js": [
                "util\/basicQueue.js",
                "util\/page_23_utils.js",
                "util\/rounding.js",
                "util\/validations.js",
                "scan_relatives.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "unlimitedStorage"
    ],
    "icons": {
        "16": "logos\/529renew-16.png",
        "19": "logos\/529renew-19.png",
        "48": "logos\/529renew-48.png",
        "128": "logos\/529renew-128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "*.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_icon": "logos\/529renew-19.png",
        "default_title": "View matches in 529Renew",
        "default_popup": "popup529.html"
    },
    "cross_origin_embedder_policy": {
        "value": "require-corp"
    },
    "cross_origin_opener_policy": {
        "value": "same-origin"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
    }
}