Trello Design
Change the design of Trello. Provides extensions that are compatible with the new Trello.
Co to jest Trello Design?
Trello Design to rozszerzenie Chrome opracowane przez Shin LLC, a jego główną funkcją jest „Change the design of Trello. Provides extensions that are compatible with the new Trello.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Trello Design
Pobierz pliki rozszerzeń Trello Design 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
For example, you can display the label color and card number. Quick Guide: https://github.com/shin-dev/trello-design/wiki ---- Version 1.2.0 New Features ・Line height adjustment at card details. https://github.com/shin-dev/trello-design/wiki#line-height-px--v120 ・Blank line height adjustment at card details. https://github.com/shin-dev/trello-design/wiki#blank-line-height-px--v120 ・Show title and url copy buttons at card details. https://github.com/shin-dev/trello-design/wiki#show-copy-button-on-card-detail--v120 Fixed ・Wasn't closed Span tag at card number. ---- Version 1.1.0 New Features ・Hide card cover on list. ・Resize card details window. Fixed ・Operation correction on non-compliant sites. ・Fixed reset behavior. ---- Version 1.0.0 New Features ・Apply label to card color. ・Display card number.
Podstawowe informacje o rozszerzeniu
Nazwa | Trello Design |
ID | bddemgibaehjbclgpppopnlcaohlikki |
Oficjalny URL | https://chromewebstore.google.com/detail/trello-design/bddemgibaehjbclgpppopnlcaohlikki |
Opis | Change the design of Trello. Provides extensions that are compatible with the new Trello. |
Rozmiar pliku | 109 KB |
Liczba instalacji | 21 |
Aktualna Wersja | 1.2.0 |
Ostatnia Aktualizacja | 2020-12-29 |
Data Publikacji | 2020-07-25 |
Deweloper | Shin LLC |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/shin-dev/trello-design |
Adres URL Strony Pomocy | https://github.com/shin-dev/trello-design/wiki |
Obsługiwane Języki | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trello Design", "version": "1.2.0", "description": "Change the design of Trello. Provides extensions that are compatible with the new Trello.", "content_scripts": [ { "run_at": "document_idle", "matches": [ "https:\/\/trello.com\/*" ], "css": [ "scripts\/content.css" ], "js": [ "scripts\/content.js" ] } ], "icons": { "16": "assets\/images\/icon_16x16.png", "48": "assets\/images\/icon_48x48.png", "128": "assets\/images\/icon_128x128.png" }, "browser_action": { "default_icon": "assets\/images\/icon_32x32.png", "default_title": "Trello Design", "default_popup": "scripts\/popup.html" }, "permissions": [ "storage", "https:\/\/trello.com\/*" ] } |