Trello No Strikethrough
Removes the strikethrough for completed tasks on Trello
什么是Trello No Strikethrough?
Trello No Strikethrough是由paradite开发的Chrome扩展程序,该扩展的主要功能是“Removes the strikethrough for completed tasks on Trello”。
扩展截图
下载Trello No Strikethrough扩展crx文件
下载Trello No Strikethrough扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| ID | jalipphihlpncggkbgmhdanibebphhkb |
| 官方URL | https://chromewebstore.google.com/detail/trello-no-strikethrough/jalipphihlpncggkbgmhdanibebphhkb |
| 简介 | Removes the strikethrough for completed tasks on Trello |
| 文件大小 | 7.12 KB |
| 安装次数 | 258 |
| 当前版本 | 1.0.2 |
| 更新时间 | 2022-10-16 |
| 上架时间 | 2017-04-30 |
| 评分 | 5.00/5 共4次评分 |
| 开发者 | paradite |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/paradite/trello-no-strikethrough |
| 支持的语言 | 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\/*"
]
} | |