WikiTree Tools

This extension add useful tools while working on WikiTree.

WikiTree Toolsคืออะไร?

WikiTree Tools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Roland และคุณลักษณะหลักของมันคือ "This extension add useful tools while working on WikiTree."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WikiTree Tools

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
}