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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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