Styling Trello
This extension makes certain Trello forms more readable and therefore useful.
What is Styling Trello?
Styling Trello is a Chrome extension developed by https://kainoto.com, and its main feature is "This extension makes certain Trello forms more readable and therefore useful.".
Extension Screenshots
Download Styling Trello Extension CRX File
Download Styling Trello extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Styling Trello |
ID | igddgiapehjmgfiionknahkilcbglfpa |
Official URL | https://chromewebstore.google.com/detail/styling-trello/igddgiapehjmgfiionknahkilcbglfpa |
Description | This extension makes certain Trello forms more readable and therefore useful. |
File Size | 94.38 KB |
Installation Count | 154 |
Current Version | 1.1 |
Last Updated | 2016-04-30 |
Publish Date | 2016-04-30 |
Rating | 5.00/5 Total 2 Ratings |
Developer | https://kainoto.com |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |