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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة WikiTree Tools
قم بتنزيل ملفات الامتداد WikiTree Tools بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Browser extension that helps you find problems when working with a WikiTree profile. - Verifies dates to make sure they are plausible.
معلومات أساسية عن التمديد
الاسم | 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" } |