Styling Trello

This extension makes certain Trello forms more readable and therefore useful.

什么是Styling Trello?

Styling Trello是由https://kainoto.com开发的Chrome扩展程序,该扩展的主要功能是“This extension makes certain Trello forms more readable and therefore useful.”。

扩展截图

screenshot

下载Styling Trello扩展crx文件

下载Styling Trello扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        For users of Trello who have hard time reading the cards descriptions and finding the important details. It is a first version and only adjusting few things on the cards. As for example, moving the buttons out of the main dialog window.                    

扩展基本信息

名称 Styling Trello Styling Trello
ID igddgiapehjmgfiionknahkilcbglfpa
官方URL https://chromewebstore.google.com/detail/styling-trello/igddgiapehjmgfiionknahkilcbglfpa
简介 This extension makes certain Trello forms more readable and therefore useful.
文件大小 94.38 KB
安装次数 154
当前版本 1.1
更新时间 2016-04-30
上架时间 2016-04-30
评分 5.00/5 共2次评分
开发者 https://kainoto.com
电子邮箱 [email protected]
付费类型 free
支持的语言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Styling Trello",
    "description": "This extension makes certain Trello forms more readable and therefore useful.",
    "author": "Kainoto",
    "icons": {
        "128": "icon-128.png",
        "64": "icon-64.png",
        "48": "icon-48.png",
        "32": "icon-32.png",
        "16": "icon-16.png"
    },
    "version": "1.1",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "bg.js"
        ],
        "all_frames": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.trello.com\/*"
            ],
            "css": [
                "tstyle.css"
            ],
            "js": [
                "tstyle.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Styling (making readable) Trello"
    }
}