Trello Clean Mode

This extension strips down Trello boards to eliminate noise

What is Trello Clean Mode?

Trello Clean Mode is a Chrome extension developed by ryan.m.tracey, and its main feature is "This extension strips down Trello boards to eliminate noise".

Extension Screenshots

screenshot

Download Trello Clean Mode Extension CRX File

Download Trello Clean Mode extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Trello Clean Mode Trello Clean Mode
ID ikgnoihnldgoanbjpbefnoopncbdcofa
Official URL https://chrome.google.com/webstore/detail/trello-clean-mode/ikgnoihnldgoanbjpbefnoopncbdcofa
Description This extension strips down Trello boards to eliminate noise
File Size 75.08 KB
Installation Count 100
Current Version 1.1
Last Updated 2017-05-25
Publish Date 2017-05-25
Rating 5.00/5 Total 2 Ratings
Developer ryan.m.tracey
Payment Type free
Supported Languages 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"
    }
}