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文件

下載Trello Prime擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        - 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
官方網址 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"
    ]
}