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. 拡張機能の基本情報
| 名前 | |
| 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"
} | |