Knilollert for Trello

Adds external clickable links to the tracker in the headers of trello cards

Cos'è Knilollert for Trello?

Knilollert for Trello è un'estensione di Chrome sviluppata da Egor Ryzhov, e la sua funzione principale è "Adds external clickable links to the tracker in the headers of trello cards".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Knilollert for Trello

Scarica i file di estensione Knilollert for Trello in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Knilollert gives you the ability to add clickable tracker links to Trello card headers

Now you may:
- Add several links to single header
- Use any of the task IDs as numeric and alpha numeric

How to config
  - Open Knilollert options
  - Add path to your tracker with task code pattern in it (for example "https://my_tracker.my_company.com/issues/#{task}"). "#{task}" will be changed to task code from Trello card.

How to use
   - Add task codes in braces to Trello card titles, like this "My card title with task link {1234} or such task link {PROJ-4217}".
   - Place code on any place in title.                    

Informazioni di Base sull'Estensione

Nome Knilollert for Trello Knilollert for Trello
ID ilngbjlkdlehookkclleoacmjkgmibhe
URL Ufficiale https://chromewebstore.google.com/detail/knilollert-for-trello/ilngbjlkdlehookkclleoacmjkgmibhe
Descrizione Adds external clickable links to the tracker in the headers of trello cards
Dimensione del File 18.06 KB
Conteggio Installazioni 39
Versione Corrente 0.0.0.5
Ultimo Aggiornamento 2020-12-04
Data di Pubblicazione 2017-07-12
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Egor Ryzhov
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Knilollert for Trello",
    "short_name": "Knilollert",
    "version": "0.0.0.5",
    "description": "Adds external clickable links to the tracker in the headers of trello cards",
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "knilollert.js"
            ],
            "css": [
                "knilollert.css"
            ]
        }
    ],
    "manifest_version": 2,
    "icons": {
        "128": "knilollert_128.png"
    },
    "permissions": [
        "storage"
    ]
}