Trello Card Aging

Provides some features for Trello, related with the card activity

Trello Card Aging란 무엇입니까?

Trello Card Aging은(는) fernand-o에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Provides some features for Trello, related with the card activity"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Provides some features for Trello, related with the card activity:

- Last activity
Creates an indicator at the bottom of the card, that shows the time difference between now and the last activity of the card.

- Card age
Creates an indicator at the bottom of the card, that shows the time difference between now and the card creation.

 - Aging effect
The aging effect is the same as the one provided from the Card Aging power-up, except for one detail: In the official power up, the card aging is removed if someone just change the card position (drag and drop) inside a list. This extension considers the last activity of the card, what might be a comment, attachment, anything who left a log inside the card.
The aging is applied in 3 states, at 7, 14, or 28 days without any action in the card. 

This project is open-source, feel free to contribute or make a suggestion:
https://github.com/fernand-o/trello-card-aging                    

확장 프로그램 기본 정보

이름 Trello Card Aging Trello Card Aging
ID eldafhhjhnfgkhpnicalopgocdbehkgj
공식 URL https://chromewebstore.google.com/detail/trello-card-aging/eldafhhjhnfgkhpnicalopgocdbehkgj
설명 Provides some features for Trello, related with the card activity
파일 크기 111 KB
설치 횟수 908
현재 버전 1.8
최근 업데이트 2018-06-01
출시 날짜 2018-06-01
평점 5.00/5 총 8 개의 평점
개발자 fernand-o
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/fernand-o/trello-card-aging
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Trello Card Aging",
    "version": "1.8",
    "description": "Provides some features for Trello, related with the card activity",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/b\/*"
            ],
            "js": [
                "jquery-3.1.0.js",
                "logic.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "64": "icon64.png",
        "128": "icon128.png",
        "256": "icon256.png"
    },
    "browser_action": {
        "default_icon": "icon64.png",
        "default_popup": "options.html"
    },
    "author": "fernand-o",
    "background": {
        "scripts": [
            "jquery-3.1.0.js",
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/trello.com\/b\/*"
    ]
}