TFS Team Room GIFer

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

什麼是TFS Team Room GIFer?

TFS Team Room GIFer是由Matt Giuliani開發的Chrome擴展程式,該擴展的主要功能是“Add makeshift animated GIF support to Team Foundation Server Team Rooms.”。

擴展截圖

screenshot

下載TFS Team Room GIFer擴展crx文件

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

擴展使用說明

                        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.                    

擴展基本資訊

名稱 TFS Team Room GIFer TFS Team Room GIFer
ID jbbflngbpdnkacdkmecmcikamfkoakkk
官方網址 https://chrome.google.com/webstore/detail/tfs-team-room-gifer/jbbflngbpdnkacdkmecmcikamfkoakkk
簡介 Add makeshift animated GIF support to Team Foundation Server Team Rooms.
檔案大小 39.08 KB
安裝次數 16
目前版本 2.2
更新時間 2014-06-23
上架時間 2014-06-23
評分 5.00/5 共 2 次評分
開發者 Matt Giuliani
付費類型 free
支援的語言 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"
    ]
}