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. 擴展基本資訊
| 名稱 | |
| ID | ggdkhkhjncfidijlnampbifmddolhgbd |
| 官方網址 | 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
}
]
} | |