RootsFinder ToDos
Add ToDos to your RootsFinder family tree
Cos'è RootsFinder ToDos?
RootsFinder ToDos è un'estensione di Chrome sviluppata da https://rootsfinder.com, e la sua funzione principale è "Add ToDos to your RootsFinder family tree".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione RootsFinder ToDos
Scarica i file di estensione RootsFinder ToDos 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
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.
Informazioni di Base sull'Estensione
Nome | RootsFinder ToDos |
ID | nmhlklogcifmkofeafamhdnminbhejho |
URL Ufficiale | https://chromewebstore.google.com/detail/rootsfinder-todos/nmhlklogcifmkofeafamhdnminbhejho |
Descrizione | Add ToDos to your RootsFinder family tree |
Dimensione del File | 14.16 KB |
Conteggio Installazioni | 1,886 |
Versione Corrente | 0.1.1 |
Ultimo Aggiornamento | 2018-02-07 |
Data di Pubblicazione | 2018-02-07 |
Valutazione | 4.00/5 Totale 1 Valutazioni |
Sviluppatore | https://rootsfinder.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.rootsfinder.com |
URL della Pagina di Aiuto | http://support.rootsfinder.com |
URL della Pagina della Politica sulla Privacy | https://www.rootsfinder.com/privacy-policy |
Lingue Supportate | 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" } } |