WikiTree Tools
This extension add useful tools while working on WikiTree.
What is WikiTree Tools?
WikiTree Tools is a Chrome extension developed by Roland, and its main feature is "This extension add useful tools while working on WikiTree.".
Extension Screenshots
Download WikiTree Tools Extension CRX File
Download WikiTree Tools 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
Browser extension that helps you find problems when working with a WikiTree profile. - Verifies dates to make sure they are plausible.
Extension Basic Information
Name | WikiTree Tools |
ID | nbofjmabmdnnjalpphahghiiblcpfloh |
Official URL | https://chromewebstore.google.com/detail/wikitree-tools/nbofjmabmdnnjalpphahghiiblcpfloh |
Description | This extension add useful tools while working on WikiTree. |
File Size | 57.51 KB |
Installation Count | 1,120 |
Current Version | 0.0.6 |
Last Updated | 2014-12-05 |
Publish Date | 2014-12-04 |
Rating | 5.00/5 Total 4 Ratings |
Developer | Roland |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "WikiTree Tools", "description": "This extension add useful tools while working on WikiTree.", "version": "0.0.6", "author": "Roland Arsenault", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "http:\/\/*.wikitree.com\/" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "WikiTree Tools" }, "content_scripts": [ { "matches": [ "http:\/\/*.wikitree.com\/*" ], "js": [ "lib\/jquery-2.0.3.min.js", "content.js" ], "css": [ "content.css" ] } ], "options_page": "options.html" } |