WikiTree Tools
This extension add useful tools while working on WikiTree.
Vad är WikiTree Tools?
WikiTree Tools är en Chrome-tillägg utvecklad av Roland, och dess huvudfunktion är "This extension add useful tools while working on WikiTree.".
Tilläggsskärmbilder
Ladda ner WikiTree Tools-förlängningens CRX-fil
Ladda ner WikiTree Tools-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Browser extension that helps you find problems when working with a WikiTree profile.
- Verifies dates to make sure they are plausible. Grundläggande Information om Tillägg
| Namn | |
| ID | nbofjmabmdnnjalpphahghiiblcpfloh |
| Officiell webbadress | https://chromewebstore.google.com/detail/wikitree-tools/nbofjmabmdnnjalpphahghiiblcpfloh |
| Beskrivning | This extension add useful tools while working on WikiTree. |
| Filstorlek | 57.51 KB |
| Antal Installationer | 1,120 |
| Aktuell Version | 0.0.6 |
| Senast Uppdaterad | 2014-12-05 |
| Publiceringsdatum | 2014-12-04 |
| Betyg | 5.00/5 Totalt 4 Betyg |
| Utvecklare | Roland |
| Betalningssätt | free |
| Stödda Språk | 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"
} | |