WikiTree Browser Extension
The official WikiTree browser extension.
What is WikiTree Browser Extension?
WikiTree Browser Extension is a Chrome extension developed by WikiTree Apps Project, and its main feature is "The official WikiTree browser extension.".
Extension Screenshots
Download WikiTree Browser Extension Extension CRX File
Download WikiTree Browser Extension 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 Browser Extension adds advanced features to WikiTree.com. Each feature can be turned on or off so you can customize WikiTree exactly as you want. Features include: * A list of your unfinished drafts. * Family timelines. * Tools to make editing templates easier. * Tools for cleaning up GEDCOM-generated text. * Extra checks when editing a biography. And much more! See https://www.wikitree.com/wiki/Space:WikiTree_Browser_Extension for a full list of features.
Extension Basic Information
Name | WikiTree Browser Extension |
ID | ncjafpiokcjepnnlmgdaphkkjehapbln |
Official URL | https://chromewebstore.google.com/detail/wikitree-browser-extensio/ncjafpiokcjepnnlmgdaphkkjehapbln |
Description | The official WikiTree browser extension. |
File Size | 2.21 MB |
Installation Count | 3,707 |
Current Version | 1.15 |
Last Updated | 2024-03-01 |
Publish Date | 2022-11-01 |
Rating | 5.00/5 Total 6 Ratings |
Developer | WikiTree Apps Project |
[email protected] | |
Payment Type | free |
Extension Website | https://www.wikitree.com/wiki/Space:WikiTree_Browser_Extension |
Help Page URL | https://www.wikitree.com/g2g/tech |
Privacy Policy Page URL | https://www.wikitree.com/wiki/Help:Privacy_Policy |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "WikiTree Browser Extension", "description": "The official WikiTree browser extension.", "version": "1.15", "manifest_version": 3, "options_page": "options.html", "permissions": [ "storage", "clipboardRead", "clipboardWrite", "contextMenus", "activeTab" ], "host_permissions": [ "https:\/\/*.wikitree.com\/*", "https:\/\/wikitree.sdms.si\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.wikitree.com\/*", "https:\/\/wikitree.sdms.si\/*" ], "js": [ "js\/vendor.js", "js\/content.js" ], "all_frames": true } ], "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "matches": [ "https:\/\/*.wikitree.com\/*", "https:\/\/wikitree.sdms.si\/*" ], "resources": [ "images\/*", "features\/wtPlus\/templatesExp.json", "features\/darkMode\/darkMode.css", "js\/*.js" ] } ], "icons": { "128": "images\/we128.png" }, "action": { "default_popup": "options.html" } } |