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”。

扩展截图

screenshot

下载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 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
        }
    ]
}