529renew

Tracks 23andMe DNA Matches using a local SQL database

O que é 529renew?

529renew é uma extensão do Chrome desenvolvida por CameronD73, e sua principal característica é "Tracks 23andMe DNA Matches using a local SQL database".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão 529renew

Baixe arquivos de extensão 529renew no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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).                    

Informações Básicas da Extensão

Nome 529renew 529renew
ID hgckkjajmcmbificinfabmaelboedjic
URL Oficial https://chromewebstore.google.com/detail/529renew/hgckkjajmcmbificinfabmaelboedjic
Descrição Tracks 23andMe DNA Matches using a local SQL database
Tamanho do Arquivo 864 KB
Contagem de Instalações 231
Versão Atual 2.0.1
Última Atualização 2024-01-01
Data de Publicação 2022-10-16
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor CameronD73
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/CameronD73/529renew
URL da Página de Política de Privacidade https://raw.githubusercontent.com/CameronD73/529renew/main/utils/PrivacyPolicy.txt
Idiomas Suportados 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';"
    }
}