Colored Exclamation Mark for Trello
This extension colors exclamation mark cards to easily distinguish them
Was ist Colored Exclamation Mark for Trello?
Colored Exclamation Mark for Trello ist eine Chrome-Erweiterung, die von mhanoi entwickelt wurde, und ihr Hauptmerkmal ist "This extension colors exclamation mark cards to easily distinguish them".
Erweiterungsscreenshots
Colored Exclamation Mark for Trello-Erweiterungs-CRX-Datei herunterladen
Laden Sie Colored Exclamation Mark for Trello-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
                        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"                      Grundlegende Informationen zur Erweiterung
| Name |  | 
| ID | ahpkhbieljfkaemoljnpenjfledfgefi | 
| Offizielle URL | https://chromewebstore.google.com/detail/colored-exclamation-mark/ahpkhbieljfkaemoljnpenjfledfgefi | 
| Beschreibung | This extension colors exclamation mark cards to easily distinguish them | 
| Dateigröße | 40.1 KB | 
| Installationsanzahl | 39 | 
| Aktuelle Version | 1.0.5 | 
| Letztes Update | 2016-08-29 | 
| Veröffentlichungsdatum | 2016-08-28 | 
| Entwickler | mhanoi | 
| Zahlungsart | free | 
| Unterstützte Sprachen | 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"
    ]
} | |