Full screen card view for Trello
Makes the card and edit window in Trello.com full screen
什么是Full screen card view for Trello?
Full screen card view for Trello是由https://justin.kelly.org.au开发的Chrome扩展程序,该扩展的主要功能是“Makes the card and edit window in Trello.com full screen”。
扩展截图
下载Full screen card view for Trello扩展crx文件
下载Full screen card view for Trello扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Converts the small Trello card view/edit windows to be full screen height and width. If you use trello.com alot like myself, and add lots (pages) of information in the card description section you’ll find the small card window a real pain to use. To fix this I whipped up a quick chrome extension to make the card edit window full screen, More info: * http://blog.justin.kelly.org.au/trello-big-edit/ Code on GitHub: * https://github.com/justinkelly/trello_big_edit
扩展基本信息
名称 | Full screen card view for Trello |
ID | iakcnnmjbdoemkjecojadhpinebnkipm |
官方URL | https://chromewebstore.google.com/detail/full-screen-card-view-for/iakcnnmjbdoemkjecojadhpinebnkipm |
简介 | Makes the card and edit window in Trello.com full screen |
文件大小 | 5.92 KB |
安装次数 | 1,820 |
当前版本 | 3 |
更新时间 | 2013-08-09 |
上架时间 | 2013-08-08 |
评分 | 4.38/5 共16次评分 |
开发者 | https://justin.kelly.org.au |
付费类型 | free |
扩展官网 | https://github.com/justinkelly/trello_big_edit |
帮助页面URL | https://github.com/justinkelly/trello_big_edit/issues |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Full screen card view for Trello", "version": "3", "manifest_version": 2, "description": "Makes the card and edit window in Trello.com full screen", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/trello.com\/*", "https:\/\/trello.com\/*" ], "js": [ "trello_big_edit.user.js" ] } ] } |