Styling Trello
This extension makes certain Trello forms more readable and therefore useful.
¿Qué es Styling Trello?
Styling Trello es una extensión de Chrome desarrollada por https://kainoto.com, y su función principal es "This extension makes certain Trello forms more readable and therefore useful.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Styling Trello
Descarga archivos de extensión Styling Trello en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Styling Trello |
ID | igddgiapehjmgfiionknahkilcbglfpa |
URL Oficial | https://chromewebstore.google.com/detail/styling-trello/igddgiapehjmgfiionknahkilcbglfpa |
Descripción | This extension makes certain Trello forms more readable and therefore useful. |
Tamaño del Archivo | 94.38 KB |
Cantidad de Instalaciones | 154 |
Versión Actual | 1.1 |
Última Actualización | 2016-04-30 |
Fecha de Publicación | 2016-04-30 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | https://kainoto.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" } } |