Trello Local File Link Extension
Insert a local file link into Trello cards
Trello Local File Link Extensionとは何ですか?
Trello Local File Link ExtensionはMichael Puglieseによって開発されたChromeの拡張機能で、その主な機能は「Insert a local file link into Trello cards」です。
拡張機能のスクリーンショット
Trello Local File Link Extension拡張機能のCRXファイルをダウンロード
Trello Local File Link Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Works with Trello (https://www.trello.com). Allows you to easily paste a local file location into a markdown enabled editable field. All you have to do is a copy a file location (eg. C:/dir/file.txt), right click your target card's description or comment input and select 'Paste Local File Link' from the context menu.
拡張機能の基本情報
名前 | Trello Local File Link Extension |
ID | ggdkhkhjncfidijlnampbifmddolhgbd |
公式URL | https://chromewebstore.google.com/detail/trello-local-file-link-ex/ggdkhkhjncfidijlnampbifmddolhgbd |
説明 | Insert a local file link into Trello cards |
ファイルサイズ | 18.44 KB |
インストール数 | 322 |
現在のバージョン | 1.1 |
最終更新日 | 2019-10-25 |
公開日 | 2019-10-24 |
評価 | 2.00/5 合計 2 レビュー |
開発者 | Michael Pugliese |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/mpugger/trello-local-file-link-ext |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Trello Local File Link Extension", "version": "1.1", "manifest_version": 2, "description": "Insert a local file link into Trello cards", "permissions": [ "contextMenus", "clipboardRead" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "js": [ "content.js" ], "run_at": "document_end", "all_frames": false } ] } |