WikiTree Tools
This extension add useful tools while working on WikiTree.
Cos'è WikiTree Tools?
WikiTree Tools è un'estensione di Chrome sviluppata da Roland, e la sua funzione principale è "This extension add useful tools while working on WikiTree.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione WikiTree Tools
Scarica i file di estensione WikiTree Tools in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Browser extension that helps you find problems when working with a WikiTree profile.
- Verifies dates to make sure they are plausible. Informazioni di Base sull'Estensione
| Nome | |
| ID | nbofjmabmdnnjalpphahghiiblcpfloh |
| URL Ufficiale | https://chromewebstore.google.com/detail/wikitree-tools/nbofjmabmdnnjalpphahghiiblcpfloh |
| Descrizione | This extension add useful tools while working on WikiTree. |
| Dimensione del File | 57.51 KB |
| Conteggio Installazioni | 1,120 |
| Versione Corrente | 0.0.6 |
| Ultimo Aggiornamento | 2014-12-05 |
| Data di Pubblicazione | 2014-12-04 |
| Valutazione | 5.00/5 Totale 4 Valutazioni |
| Sviluppatore | Roland |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
} | |