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”。

扩展截图

screenshot

下载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.                    

扩展基本信息

名称 Trello Clean Mode Trello Clean Mode
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"
    }
}