WikiTree Tools
This extension add useful tools while working on WikiTree.
什么是WikiTree Tools?
WikiTree Tools是由Roland开发的Chrome扩展程序,该扩展的主要功能是“This extension add useful tools while working on WikiTree.”。
扩展截图
下载WikiTree Tools扩展crx文件
下载WikiTree Tools扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Browser extension that helps you find problems when working with a WikiTree profile. - Verifies dates to make sure they are plausible.
扩展基本信息
名称 | WikiTree Tools |
ID | nbofjmabmdnnjalpphahghiiblcpfloh |
官方URL | https://chromewebstore.google.com/detail/wikitree-tools/nbofjmabmdnnjalpphahghiiblcpfloh |
简介 | This extension add useful tools while working on WikiTree. |
文件大小 | 57.51 KB |
安装次数 | 1,120 |
当前版本 | 0.0.6 |
更新时间 | 2014-12-05 |
上架时间 | 2014-12-04 |
评分 | 5.00/5 共4次评分 |
开发者 | Roland |
付费类型 | free |
支持的语言 | 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" } |