WikiTree Tools

This extension add useful tools while working on WikiTree.

Was ist WikiTree Tools?

WikiTree Tools ist eine Chrome-Erweiterung, die von Roland entwickelt wurde, und ihr Hauptmerkmal ist "This extension add useful tools while working on WikiTree.".

Erweiterungsscreenshots

screenshot

WikiTree Tools-Erweiterungs-CRX-Datei herunterladen

Laden Sie WikiTree Tools-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

- Verifies dates to make sure they are plausible.                    

Grundlegende Informationen zur Erweiterung

Name WikiTree Tools WikiTree Tools
ID nbofjmabmdnnjalpphahghiiblcpfloh
Offizielle URL https://chromewebstore.google.com/detail/wikitree-tools/nbofjmabmdnnjalpphahghiiblcpfloh
Beschreibung This extension add useful tools while working on WikiTree.
Dateigröße 57.51 KB
Installationsanzahl 1,120
Aktuelle Version 0.0.6
Letztes Update 2014-12-05
Veröffentlichungsdatum 2014-12-04
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler Roland
Zahlungsart free
Unterstützte Sprachen 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"
}