Styling Trello
This extension makes certain Trello forms more readable and therefore useful.
Co je Styling Trello?
Styling Trello je rozšíření Chrome vyvinuté https://kainoto.com, a jeho hlavní funkcí je „This extension makes certain Trello forms more readable and therefore useful.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Styling Trello
Stáhněte si soubory rozšíření Styling Trello ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Styling Trello |
ID | igddgiapehjmgfiionknahkilcbglfpa |
Oficiální URL | https://chromewebstore.google.com/detail/styling-trello/igddgiapehjmgfiionknahkilcbglfpa |
Popis | This extension makes certain Trello forms more readable and therefore useful. |
Velikost souboru | 94.38 KB |
Počet instalací | 154 |
Aktuální Verze | 1.1 |
Poslední Aktualizace | 2016-04-30 |
Datum Vydání | 2016-04-30 |
Hodnocení | 5.00/5 Celkem 2 Hodnocení |
Vývojář | https://kainoto.com |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" } } |