Trello Prime

Use Trello with some cool features.

Trello Prime란 무엇입니까?

Trello Prime은(는) thearchitgarg에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use Trello with some cool features."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Trello Prime 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        - You will be able to see the card ID when a card is open (HOT FEATURE)
- Change your custom background color w/o changing color for all the teammates.
- You can see the trello card short id on every card (which you can use to refrence cards in standup meetings or to name your git branches)
- Now you will be able to see the label text on each card.
- Turn ON/OFF any of these features anytime. 
- Cool UI & lightweight plugin(screenshots attached)
- Results in increased productivity and will help to name your branches.

More cool features coming soon so add this to your chrome so that it will be automatically updated whenever a new version will arrive. Write in the comments if you would like to have any new feature or you face any issue, I will try to respond as quickly as possible.                    

확장 프로그램 기본 정보

이름 Trello Prime Trello Prime
ID mkphpfbogfpojbbmbdhfcboleippkffh
공식 URL https://chromewebstore.google.com/detail/trello-prime/mkphpfbogfpojbbmbdhfcboleippkffh
설명 Use Trello with some cool features.
파일 크기 149 KB
설치 횟수 150
현재 버전 1.0.2
최근 업데이트 2019-08-18
출시 날짜 2019-08-18
평점 5.00/5 총 3 개의 평점
개발자 thearchitgarg
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello Prime",
    "short_name": "Trel-Prime",
    "description": "Use Trello with some cool features.",
    "version": "1.0.2",
    "browser_action": {
        "default_icon": "assets\/logo.png",
        "default_popup": "popup.html",
        "default_title": "Trello Prime"
    },
    "icons": {
        "128": "assets\/logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.trello.com\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "scripts\/content_script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "*:\/\/trello.com\/*",
        "tabs",
        "storage"
    ]
}