Styling Trello
This extension makes certain Trello forms more readable and therefore useful.
Co to jest Styling Trello?
Styling Trello to rozszerzenie Chrome opracowane przez https://kainoto.com, a jego główną funkcją jest „This extension makes certain Trello forms more readable and therefore useful.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Styling Trello
Pobierz pliki rozszerzeń Styling Trello 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 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.
Podstawowe informacje o rozszerzeniu
Nazwa | Styling Trello |
ID | igddgiapehjmgfiionknahkilcbglfpa |
Oficjalny URL | https://chromewebstore.google.com/detail/styling-trello/igddgiapehjmgfiionknahkilcbglfpa |
Opis | This extension makes certain Trello forms more readable and therefore useful. |
Rozmiar pliku | 94.38 KB |
Liczba instalacji | 154 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2016-04-30 |
Data Publikacji | 2016-04-30 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | https://kainoto.com |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } } |