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 |
| Eメール | [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\/*"
]
} | |