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 |
| 公式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 |
| Eメール | [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"
}
} | |