Styling Trello
This extension makes certain Trello forms more readable and therefore useful.
什麼是Styling Trello?
Styling Trello是由https://kainoto.com開發的Chrome擴展程式,該擴展的主要功能是“This extension makes certain Trello forms more readable and therefore useful.”。
擴展截圖
下載Styling Trello擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | igddgiapehjmgfiionknahkilcbglfpa |
| 官方網址 | 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"
}
} | |