trello-board
enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…
trello-boardとは何ですか?
trello-boardはrotagi37によって開発されたChromeの拡張機能で、その主な機能は「enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…」です。
trello-board拡張機能のCRXファイルをダウンロード
trello-board拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy access to the list from the extension icon
拡張機能の基本情報
名前 | |
ID | ndeahieadodljlbnmhkiminjacaalakm |
公式URL | https://chrome.google.com/webstore/detail/trello-board/ndeahieadodljlbnmhkiminjacaalakm |
説明 | enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy… |
ファイルサイズ | 65.42 KB |
インストール数 | 42 |
現在のバージョン | 1.0.1.6 |
最終更新日 | 2017-09-27 |
公開日 | 2017-09-27 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | rotagi37 |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "trello-board", "manifest_version": 2, "version": "1.0.1.6", "icons": { "16": "icon.png", "32": "icon.png", "48": "icon.png" }, "permissions": [ "history", "contextMenus", "clipboardWrite", "clipboardRead", "webRequest", "webRequestBlocking", "tabs", "https:\/\/trello.com\/*" ], "options_page": "options.html", "background": { "scripts": [ "\/bg.js" ] }, "browser_action": { "default_icon": { "16": "icon.png", "32": "icon.png", "48": "icon.png" }, "default_title": "Trello Board", "default_popup": "popup.html" }, "content_scripts": [ { "all_frames": true, "css": [], "js": [ "jquery-3.2.1.min.js", "cscript.js" ], "matches": [ "https:\/\/trello.com\/*" ], "run_at": "document_end" } ] } |