Styling Trello
This extension makes certain Trello forms more readable and therefore useful.
Was ist Styling Trello?
Styling Trello ist eine Chrome-Erweiterung, die von https://kainoto.com entwickelt wurde, und ihr Hauptmerkmal ist "This extension makes certain Trello forms more readable and therefore useful.".
Erweiterungsscreenshots
Styling Trello-Erweiterungs-CRX-Datei herunterladen
Laden Sie Styling Trello-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | igddgiapehjmgfiionknahkilcbglfpa |
| Offizielle URL | https://chromewebstore.google.com/detail/styling-trello/igddgiapehjmgfiionknahkilcbglfpa |
| Beschreibung | This extension makes certain Trello forms more readable and therefore useful. |
| Dateigröße | 94.38 KB |
| Installationsanzahl | 154 |
| Aktuelle Version | 1.1 |
| Letztes Update | 2016-04-30 |
| Veröffentlichungsdatum | 2016-04-30 |
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
| Entwickler | https://kainoto.com |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
}
} | |