Colored Exclamation Mark for Trello

This extension colors exclamation mark cards to easily distinguish them

什麼是Colored Exclamation Mark for Trello?

Colored Exclamation Mark for Trello是由mhanoi開發的Chrome擴展程式,該擴展的主要功能是“This extension colors exclamation mark cards to easily distinguish them”。

擴展截圖

screenshot

下載Colored Exclamation Mark for Trello擴展crx文件

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

擴展使用說明

                        This extension colors Exclamation Mark cards to easily distinguish them
A Exclamation Mark is useful to categorize cards e.g, in scrum you may add ! to specify to which story belongs. 

This plugin extracts Exclamation Mark in a card title and change cards' background color according to it. This feature enhances visibility and you might be able to distinguish cards at glance.

Note: modify for change a hashtags to exclamation mark Credit by "Colored Hashtag for Trello"                    

擴展基本資訊

名稱 Colored Exclamation Mark for Trello Colored Exclamation Mark for Trello
ID ahpkhbieljfkaemoljnpenjfledfgefi
官方網址 https://chromewebstore.google.com/detail/colored-exclamation-mark/ahpkhbieljfkaemoljnpenjfledfgefi
簡介 This extension colors exclamation mark cards to easily distinguish them
檔案大小 40.1 KB
安裝次數 39
目前版本 1.0.5
更新時間 2016-08-29
上架時間 2016-08-28
開發者 mhanoi
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "1.0.5",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "bower_components\/jquery\/jquery.min.js",
                "scripts\/colored_exclamation_mark.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "webNavigation"
    ]
}