Knilollert for Trello

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

O que é Knilollert for Trello?

Knilollert for Trello é uma extensão do Chrome desenvolvida por Egor Ryzhov, e sua principal característica é "Adds external clickable links to the tracker in the headers of trello cards".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Knilollert for Trello

Baixe arquivos de extensão Knilollert for Trello no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Knilollert for Trello Knilollert for Trello
ID ilngbjlkdlehookkclleoacmjkgmibhe
URL Oficial https://chromewebstore.google.com/detail/knilollert-for-trello/ilngbjlkdlehookkclleoacmjkgmibhe
Descrição Adds external clickable links to the tracker in the headers of trello cards
Tamanho do Arquivo 18.06 KB
Contagem de Instalações 39
Versão Atual 0.0.0.5
Última Atualização 2020-12-04
Data de Publicação 2017-07-12
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Egor Ryzhov
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}