Trello My Cards Prioritization
My Cards prioritization.
Trello My Cards Prioritizationとは何ですか?
Trello My Cards Prioritizationはhttps://www.netmagnet.czによって開発されたChromeの拡張機能で、その主な機能は「My Cards prioritization.」です。
拡張機能のスクリーンショット
Trello My Cards Prioritization拡張機能のCRXファイルをダウンロード
Trello My Cards Prioritization拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Visual prioritization of My Cards page list in Trello. NOT in a standard board view. Extension changes card's visual appearance based on its presence in a list: Ideas: light transparency Todo: without change Doing: highlighted To Deploy: highlighted Done: hidden Postponed: heavy transparency Cancelled: hidden These list names can be substrings, so cards in list "Done 2019-09-19" will be hidden. Updates in v1.0.0: - correctly detect page and content change so this extension works again :) Updates in v1.1.1: - Add "To Deploy" list name - Fix css class names
拡張機能の基本情報
名前 | Trello My Cards Prioritization |
ID | bpbkpegngbkknmghhjbeekjdphjhkdif |
公式URL | https://chromewebstore.google.com/detail/trello-my-cards-prioritiz/bpbkpegngbkknmghhjbeekjdphjhkdif |
説明 | My Cards prioritization. |
ファイルサイズ | 53.05 KB |
インストール数 | 19 |
現在のバージョン | 1.1.1 |
最終更新日 | 2019-12-11 |
公開日 | 2019-12-11 |
開発者 | https://www.netmagnet.cz |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | http://www.netmagnet.cz |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trello My Cards Prioritization", "short_name": "Trello My Cards Prio", "description": "My Cards prioritization.", "version": "1.1.1", "author": "Tomas Kouba", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "https:\/\/trello.com\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "js": [ "jquery-3.2.1.min.js", "bootstrap.js", "mycards.js" ] } ], "web_accessible_resources": [ "style.css" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |