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 |
官方網址 | 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" } } |