Trello Clean Mode

This extension strips down Trello boards to eliminate noise

Co to jest Trello Clean Mode?

Trello Clean Mode to rozszerzenie Chrome opracowane przez ryan.m.tracey, a jego główną funkcją jest „This extension strips down Trello boards to eliminate noise”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Trello Clean Mode

Pobierz pliki rozszerzeń Trello Clean Mode w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Trello Clean Mode Trello Clean Mode
ID ikgnoihnldgoanbjpbefnoopncbdcofa
Oficjalny URL https://chrome.google.com/webstore/detail/trello-clean-mode/ikgnoihnldgoanbjpbefnoopncbdcofa
Opis This extension strips down Trello boards to eliminate noise
Rozmiar pliku 75.08 KB
Liczba instalacji 100
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2017-05-25
Data Publikacji 2017-05-25
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper ryan.m.tracey
Typ Płatności free
Obsługiwane Języki 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"
    }
}