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.
扩展基本信息
名称 | Trello minimal UI toggle |
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 |
电子邮箱 | [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" ] } |