TFS Team Room GIFer

Add makeshift animated GIF support to Team Foundation Server Team Rooms.

O que é TFS Team Room GIFer?

TFS Team Room GIFer é uma extensão do Chrome desenvolvida por Matt Giuliani, e sua principal característica é "Add makeshift animated GIF support to Team Foundation Server Team Rooms.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão TFS Team Room GIFer

Baixe arquivos de extensão TFS Team Room GIFer 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

                        Make talking to your team fun again!  Grab this extension for a  hacky solution to one of the biggest deficiencies of Team Foundation Server Team Rooms - animated GIF support.

While your at it, make the rest of your team install it as well, because they can't see your GIFs without it.  And I bet you have some great ones to share!

NEW IN 2.2!

* Works with on-premises installations of TFS.                    

Informações Básicas da Extensão

Nome TFS Team Room GIFer TFS Team Room GIFer
ID jbbflngbpdnkacdkmecmcikamfkoakkk
URL Oficial https://chrome.google.com/webstore/detail/tfs-team-room-gifer/jbbflngbpdnkacdkmecmcikamfkoakkk
Descrição Add makeshift animated GIF support to Team Foundation Server Team Rooms.
Tamanho do Arquivo 39.08 KB
Contagem de Instalações 16
Versão Atual 2.2
Última Atualização 2014-06-23
Data de Publicação 2014-06-23
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Matt Giuliani
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TFS Team Room GIFer",
    "description": "Add makeshift animated GIF support to Team Foundation Server Team Rooms.",
    "version": "2.2",
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "minimum_chrome_version": "6.0.472.41",
    "manifest_version": 2,
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/tfs\/_rooms*"
            ],
            "js": [
                "jquery.js",
                "contentscript.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs"
    ]
}