WikiTree AGC

WikiTree Automatic GEDCOM Cleanup

Cos'è WikiTree AGC?

WikiTree AGC è un'estensione di Chrome sviluppata da Rob Pavey Software, e la sua funzione principale è "WikiTree Automatic GEDCOM Cleanup".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione WikiTree AGC

Scarica i file di estensione WikiTree AGC in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        The WikiTree AGC (Automatic GEDCOM Cleanup) extension allows users of wikitree.com to automatically reformat biographies created by GEDCOMpare. It adds a button to the wikitree profile edit page when the profile looks like one created by GEDCOMpare. Pressing the button will reformat the biography into a chronological narrative that provides a good starting point for a typical WikiTree biography.                    

Informazioni di Base sull'Estensione

Nome WikiTree AGC WikiTree AGC
ID jbmjbhgjjademhplejlndlbolmodingj
URL Ufficiale https://chromewebstore.google.com/detail/wikitree-agc/jbmjbhgjjademhplejlndlbolmodingj
Descrizione WikiTree Automatic GEDCOM Cleanup
Dimensione del File 127 KB
Conteggio Installazioni 1,119
Versione Corrente 1.2.0
Ultimo Aggiornamento 2022-08-09
Data di Pubblicazione 2020-08-03
Valutazione 5.00/5 Totale 7 Valutazioni
Sviluppatore Rob Pavey Software
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.wikitree.com/index.php?title=Space:WikiTree_AGC
URL della Pagina della Politica sulla Privacy https://www.wikitree.com/wiki/Space:WikiTree_Sourcer_Privacy_Policy
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WikiTree AGC",
    "version": "1.2.0",
    "description": "WikiTree Automatic GEDCOM Cleanup",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": {
            "16": "images\/wikitree_agc16.png",
            "32": "images\/wikitree_agc32.png",
            "48": "images\/wikitree_agc48.png",
            "128": "images\/wikitree_agc128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.wikitree.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "icons": {
        "16": "images\/wikitree_agc16.png",
        "32": "images\/wikitree_agc32.png",
        "48": "images\/wikitree_agc48.png",
        "128": "images\/wikitree_agc128.png"
    },
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/www.wikitree.com\/*"
            ],
            "resources": [
                "images\/agc.png",
                "images\/agc_undo.png",
                "library\/editbio.mjs"
            ]
        }
    ],
    "manifest_version": 3
}