Styling Trello
This extension makes certain Trello forms more readable and therefore useful.
Τι είναι το Styling Trello;
Το Styling Trello είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://kainoto.com, και η κύρια λειτουργία του είναι "This extension makes certain Trello forms more readable and therefore useful.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Styling Trello
Λήψη αρχείων επέκτασης Styling Trello σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Styling Trello |
ID | igddgiapehjmgfiionknahkilcbglfpa |
Επίσημο URL | https://chromewebstore.google.com/detail/styling-trello/igddgiapehjmgfiionknahkilcbglfpa |
Περιγραφή | This extension makes certain Trello forms more readable and therefore useful. |
Μέγεθος Αρχείου | 94.38 KB |
Αριθμός Εγκαταστάσεων | 154 |
Τρέχουσα Έκδοση | 1.1 |
Τελευταία Ενημέρωση | 2016-04-30 |
Ημερομηνία Δημοσίευσης | 2016-04-30 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | https://kainoto.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" } } |