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

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

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 trello-board trello-board
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
이메일 [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"
        }
    ]
}