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 |
| 官方網址 | 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"
} | |