RootsFinder ToDos
Add ToDos to your RootsFinder family tree
ما هو RootsFinder ToDos؟
RootsFinder ToDos هو إضافة Chrome تم تطويرها بواسطة https://rootsfinder.com، والميزة الرئيسية لها هي "Add ToDos to your RootsFinder family tree".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة RootsFinder ToDos
قم بتنزيل ملفات الامتداد RootsFinder ToDos بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
If you're looking at a web page that you want to remember to come back to later, this browser extension will let you create a ToDo for that web page and attach it to a person in your RootsFinder tree. In addition, this browser extension adds icons next to the links in https://www.familysearch.org/wiki/ that allow you to create ToDos for those links directly from within the wiki. This functionality works for and http://www.thefhguide.com/ as well.
معلومات أساسية عن التمديد
الاسم | RootsFinder ToDos |
ID | nmhlklogcifmkofeafamhdnminbhejho |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/rootsfinder-todos/nmhlklogcifmkofeafamhdnminbhejho |
الوصف | Add ToDos to your RootsFinder family tree |
حجم الملف | 14.16 KB |
عدد التثبيتات | 1,886 |
النسخة الحالية | 0.1.1 |
آخر تحديث | 2018-02-07 |
تاريخ النشر | 2018-02-07 |
تقييم | 4.00/5 مجموع تقييمات 1 |
المطور | https://rootsfinder.com |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://www.rootsfinder.com |
عنوان صفحة المساعدة | http://support.rootsfinder.com |
عنوان صفحة سياسة الخصوصية | https://www.rootsfinder.com/privacy-policy |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "RootsFinder ToDos", "description": "Add ToDos to your RootsFinder family tree", "version": "0.1.1", "permissions": [ "activeTab" ], "background": { "scripts": [ "src\/background.js" ], "persistent": false }, "browser_action": { "default_title": "RootsFinder ToDos", "default_icon": { "19": "icons\/todo-clipper-icon-19.png", "38": "icons\/todo-clipper-icon-38.png" } }, "content_scripts": [ { "matches": [ "https:\/\/www.familysearch.org\/wiki\/*" ], "css": [ "src\/icons.css" ], "js": [ "src\/icons.js", "src\/fsWiki.js" ] }, { "matches": [ "*:\/\/*.thefhguide.com\/*" ], "css": [ "src\/icons.css" ], "js": [ "src\/icons.js", "src\/fhGuide.js" ] } ], "web_accessible_resources": [ "checkbox.svg" ], "icons": { "16": "icons\/todo-clipper-icon-16.png", "19": "icons\/todo-clipper-icon-19.png", "38": "icons\/todo-clipper-icon-38.png", "48": "icons\/todo-clipper-icon-48.png", "128": "icons\/todo-clipper-icon-128.png" } } |