Styling Trello
This extension makes certain Trello forms more readable and therefore useful.
Wat is Styling Trello?
Styling Trello is een Chrome-extensie ontwikkeld door https://kainoto.com, en de belangrijkste functie is "This extension makes certain Trello forms more readable and therefore useful.".
Extensie Screenshots
Download het CRX-bestand van de extensie Styling Trello
Download Styling Trello-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | igddgiapehjmgfiionknahkilcbglfpa |
| Officiële URL | https://chromewebstore.google.com/detail/styling-trello/igddgiapehjmgfiionknahkilcbglfpa |
| Beschrijving | This extension makes certain Trello forms more readable and therefore useful. |
| Bestandsgrootte | 94.38 KB |
| Aantal Installaties | 154 |
| Huidige Versie | 1.1 |
| Laatst Bijgewerkt | 2016-04-30 |
| Publicatiedatum | 2016-04-30 |
| Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | https://kainoto.com |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
}
} | |