Styling Trello
This extension makes certain Trello forms more readable and therefore useful.
Hvad er Styling Trello?
Styling Trello er en Chrome-udvidelse udviklet af https://kainoto.com, og dens hovedfunktion er "This extension makes certain Trello forms more readable and therefore useful.".
Udvidelsesskærmbilleder
Download Styling Trello-udvidelses-CRX-fil
Download Styling Trello-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Styling Trello |
ID | igddgiapehjmgfiionknahkilcbglfpa |
Officiel URL | https://chromewebstore.google.com/detail/styling-trello/igddgiapehjmgfiionknahkilcbglfpa |
Beskrivelse | This extension makes certain Trello forms more readable and therefore useful. |
Filstørrelse | 94.38 KB |
Antal Installationer | 154 |
Nuværende Version | 1.1 |
Senest Opdateret | 2016-04-30 |
Udgivelsesdato | 2016-04-30 |
Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
Udvikler | https://kainoto.com |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" } } |