Vitajte na stránke Doplnky pre Thunderbird.
Pridajte si vlastné funkcie a štýly, pomocou ktorých si Thunderbird prispôsobíte podľa seba.
Zavrieť
AdvancedTasks 1.6 Vyžaduje reštart
Autor: mthaens
Thunderbirds Lightning Extension: Allows the use of Markdown in Task descriptions and renders them as HTML in the TaskView.
Aby tento doplnok pracoval správne, je nutné nainštalovať nasledovné doplnky:
-
734 566 používateľov
O tomto doplnku
Features:
- Renders Markdown as HTML in Taskview
- supports checkboxes ( clickable in Taskview)
-> will update the task description and update/calculate Taskprogress
Version 1.5+:
- open links in browser and mailto link in thunderbird
-> e.g. [link opens in browser!](https://addons.mozilla.org/en-US/thunderbird/addon/advancedtasks/) or [mailto](mailto:[email protected])
- useful html elements: input, textarea, forms
-> save your input
-> send your forms to your server
HTML Examples:
Generate a Save Button to save input-fields and textareas:
<button type="button">Save</button>
Input:
<input type="text" value="myValue">
<textarea cols="50" rows="4">My Text</textarea>
<form action="http://yourserver/api" method="post">
First name: <input name="fname" type="text" value="111">
Last name: <input name="lname" type="text" value="">
<input type="submit" value="Submit">
</form>