RootsFinder ToDos
Add ToDos to your RootsFinder family tree
什麼是RootsFinder ToDos?
RootsFinder ToDos是由https://rootsfinder.com開發的Chrome擴展程式,該擴展的主要功能是“Add ToDos to your RootsFinder family tree”。
擴展截圖
下載RootsFinder ToDos擴展crx文件
下載RootsFinder ToDos擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | nmhlklogcifmkofeafamhdnminbhejho |
| 官方網址 | 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 |
| 說明頁面URL | http://support.rootsfinder.com |
| 隱私政策頁面URL | 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"
}
} | |