WikiTree Tools

This extension add useful tools while working on WikiTree.

WikiTree Tools là gì?

WikiTree Tools là một tiện ích mở rộng Chrome được phát triển bởi Roland, và tính năng chính của nó là "This extension add useful tools while working on WikiTree.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng WikiTree Tools

Tải xuống các tệp mở rộng WikiTree Tools dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Browser extension that helps you find problems when working with a WikiTree profile.

- Verifies dates to make sure they are plausible.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên WikiTree Tools WikiTree Tools
ID nbofjmabmdnnjalpphahghiiblcpfloh
URL Chính Thức https://chromewebstore.google.com/detail/wikitree-tools/nbofjmabmdnnjalpphahghiiblcpfloh
Mô tả This extension add useful tools while working on WikiTree.
Kích Thước Tệp 57.51 KB
Số Lần Cài Đặt 1,120
Phiên Bản Hiện Tại 0.0.6
Cập Nhật Lần Cuối 2014-12-05
Ngày Phát Hành 2014-12-04
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Roland
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}