Trello No Strikethrough
Removes the strikethrough for completed tasks on Trello
Vad är Trello No Strikethrough?
Trello No Strikethrough är en Chrome-tillägg utvecklad av paradite, och dess huvudfunktion är "Removes the strikethrough for completed tasks on Trello".
Tilläggsskärmbilder
Ladda ner Trello No Strikethrough-förlängningens CRX-fil
Ladda ner Trello No Strikethrough-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Trello strikethrough for completed tasks by default can be annoying.
This extensions removes Trello strikethrough for completed tasks in checklists.
Source code:
https://github.com/paradite/trello-no-strikethrough Grundläggande Information om Tillägg
| Namn | |
| ID | jalipphihlpncggkbgmhdanibebphhkb |
| Officiell webbadress | https://chromewebstore.google.com/detail/trello-no-strikethrough/jalipphihlpncggkbgmhdanibebphhkb |
| Beskrivning | Removes the strikethrough for completed tasks on Trello |
| Filstorlek | 7.12 KB |
| Antal Installationer | 258 |
| Aktuell Version | 1.0.2 |
| Senast Uppdaterad | 2022-10-16 |
| Publiceringsdatum | 2017-04-30 |
| Betyg | 5.00/5 Totalt 4 Betyg |
| Utvecklare | paradite |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/paradite/trello-no-strikethrough |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Trello No Strikethrough",
"description": "Removes the strikethrough for completed tasks on Trello",
"icons": {
"128": "icon.png"
},
"version": "1.0.2",
"background": {
"page": "popup.html"
},
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html",
"default_title": "Trello No Strikethrough"
},
"content_scripts": [
{
"matches": [
"*:\/\/trello.com\/*"
],
"css": [
"mystyles.css"
]
}
],
"permissions": [
"https:\/\/trello.com\/*"
]
} | |