Trello minimal UI toggle
Hide unused elements from Trello board
Trello minimal UI toggleとは何ですか?
Trello minimal UI toggleはterrylidevによって開発されたChromeの拡張機能で、その主な機能は「Hide unused elements from Trello board」です。
拡張機能のスクリーンショット
Trello minimal UI toggle拡張機能のCRXファイルをダウンロード
Trello minimal UI toggle拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension allows you to have a clean Trello board by hiding unused elements, buttons and functions. 拡張機能の基本情報
| 名前 | |
| ID | higifdcpoicalcpgmbohdohmcgamabfn |
| 公式URL | https://chromewebstore.google.com/detail/trello-minimal-ui-toggle/higifdcpoicalcpgmbohdohmcgamabfn |
| 説明 | Hide unused elements from Trello board |
| ファイルサイズ | 232 KB |
| インストール数 | 40 |
| 現在のバージョン | 1.0.0 |
| 最終更新日 | 2020-06-08 |
| 公開日 | 2020-06-07 |
| 評価 | 4.67/5 合計 3 レビュー |
| 開発者 | terrylidev |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Trello minimal UI toggle",
"version": "1.0.0",
"description": "Hide unused elements from Trello board",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": "icon128.png"
},
"content_scripts": [
{
"js": [
"content.js"
],
"run_at": "document_idle",
"matches": [
"https:\/\/trello.com\/*"
]
}
],
"permissions": [
"storage"
]
} | |