Trello To-do Notes
Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30
Trello To-do Notesとは何ですか?
Trello To-do Notesはhttps://valerypopoff.ru/trelloによって開発されたChromeの拡張機能で、その主な機能は「Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30」です。
拡張機能のスクリーンショット
Trello To-do Notes拡張機能のCRXファイルをダウンロード
Trello To-do Notes拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
How to use: open Trello cards in separate browser windows and click the extension icon * Removes visual noise leaving only checklists. * Highlights urgent tasks if you provide deadlines like this: / Apr 30
拡張機能の基本情報
名前 | Trello To-do Notes |
ID | agdeebidnlidokgnnkhiiccefldilcjp |
公式URL | https://chromewebstore.google.com/detail/trello-to-do-notes/agdeebidnlidokgnnkhiiccefldilcjp |
説明 | Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30 |
ファイルサイズ | 109 KB |
インストール数 | 1,099 |
現在のバージョン | 0.9.8 |
最終更新日 | 2020-12-12 |
公開日 | 2018-07-02 |
評価 | 4.36/5 合計 11 レビュー |
開発者 | https://valerypopoff.ru/trello |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | http://valerypopoff.ru/trello |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trello To-do Notes", "description": "Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: \/ Apr 30", "version": "0.9.8", "permissions": [ "http:\/\/trello.com\/*", "https:\/\/trello.com\/*" ], "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon.png", "default_title": "Click to do the magic" }, "icons": { "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "js": [ "jquery.js", "bowser.min.js", "script.js", "majic.js" ] } ], "web_accessible_resources": [ "color.css" ] } |