Trello No Strikethrough
Removes the strikethrough for completed tasks on Trello
What is Trello No Strikethrough?
Trello No Strikethrough is a Chrome extension developed by paradite, and its main feature is "Removes the strikethrough for completed tasks on Trello".
Extension Screenshots
Download Trello No Strikethrough Extension CRX File
Download Trello No Strikethrough extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Trello No Strikethrough |
ID | jalipphihlpncggkbgmhdanibebphhkb |
Official URL | https://chromewebstore.google.com/detail/trello-no-strikethrough/jalipphihlpncggkbgmhdanibebphhkb |
Description | Removes the strikethrough for completed tasks on Trello |
File Size | 7.12 KB |
Installation Count | 258 |
Current Version | 1.0.2 |
Last Updated | 2022-10-16 |
Publish Date | 2017-04-30 |
Rating | 5.00/5 Total 4 Ratings |
Developer | paradite |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/paradite/trello-no-strikethrough |
Supported Languages | 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\/*" ] } |