WikiTree AGC
WikiTree Automatic GEDCOM Cleanup
What is WikiTree AGC?
WikiTree AGC is a Chrome extension developed by Rob Pavey Software, and its main feature is "WikiTree Automatic GEDCOM Cleanup".
Extension Screenshots
Download WikiTree AGC Extension CRX File
Download WikiTree AGC extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | WikiTree AGC |
ID | jbmjbhgjjademhplejlndlbolmodingj |
Official URL | https://chromewebstore.google.com/detail/wikitree-agc/jbmjbhgjjademhplejlndlbolmodingj |
Description | WikiTree Automatic GEDCOM Cleanup |
File Size | 127 KB |
Installation Count | 1,119 |
Current Version | 1.2.0 |
Last Updated | 2022-08-09 |
Publish Date | 2020-08-03 |
Rating | 5.00/5 Total 7 Ratings |
Developer | Rob Pavey Software |
[email protected] | |
Payment Type | free |
Extension Website | https://www.wikitree.com/index.php?title=Space:WikiTree_AGC |
Privacy Policy Page URL | https://www.wikitree.com/wiki/Space:WikiTree_Sourcer_Privacy_Policy |
Supported Languages | 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 } |