Trello Clean Mode
This extension strips down Trello boards to eliminate noise
Trello Clean Modeとは何ですか?
Trello Clean Modeはryan.m.traceyによって開発されたChromeの拡張機能で、その主な機能は「This extension strips down Trello boards to eliminate noise」です。
拡張機能のスクリーンショット
Trello Clean Mode拡張機能のCRXファイルをダウンロード
Trello Clean Mode拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A Chrome extension that allows you to reduce the clutter of the Trello interface.
You can remove member icons, labels, badges, stickers, and cover images. 拡張機能の基本情報
| 名前 | |
| ID | ikgnoihnldgoanbjpbefnoopncbdcofa |
| 公式URL | https://chrome.google.com/webstore/detail/trello-clean-mode/ikgnoihnldgoanbjpbefnoopncbdcofa |
| 説明 | This extension strips down Trello boards to eliminate noise |
| ファイルサイズ | 75.08 KB |
| インストール数 | 100 |
| 現在のバージョン | 1.1 |
| 最終更新日 | 2017-05-25 |
| 公開日 | 2017-05-25 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | ryan.m.tracey |
| 支払い方法 | free |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Trello Clean Mode",
"description": "This extension strips down Trello boards to eliminate noise",
"version": "1.1",
"icons": {
"128": "icon_100.png"
},
"background": {
"persistence": true,
"scripts": [
"jquery.js",
"main.js",
"navigation-handler.js",
"options.js"
]
},
"content_scripts": [
{
"css": [
"main.css"
],
"js": [
"jquery.js",
"dom.js"
],
"matches": [
"https:\/\/*.trello.com\/*"
]
}
],
"permissions": [
"storage",
"webNavigation",
"tabs",
"*:\/\/*\/*"
],
"browser_action": {
"default_title": "",
"default_icon": "icon_100.png",
"default_popup": "popup.html"
}
} | |