Styling Trello
This extension makes certain Trello forms more readable and therefore useful.
Styling Trello là gì?
Styling Trello là một tiện ích mở rộng Chrome được phát triển bởi https://kainoto.com, và tính năng chính của nó là "This extension makes certain Trello forms more readable and therefore useful.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Styling Trello
Tải xuống các tệp mở rộng Styling Trello dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Styling Trello |
ID | igddgiapehjmgfiionknahkilcbglfpa |
URL Chính Thức | https://chromewebstore.google.com/detail/styling-trello/igddgiapehjmgfiionknahkilcbglfpa |
Mô tả | This extension makes certain Trello forms more readable and therefore useful. |
Kích Thước Tệp | 94.38 KB |
Số Lần Cài Đặt | 154 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2016-04-30 |
Ngày Phát Hành | 2016-04-30 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | https://kainoto.com |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |