TFS+

Enhancements to the browser interface for TFS 2013 and 2015.

TFS+とは何ですか?

TFS+はeakosinによって開発されたChromeの拡張機能で、その主な機能は「Enhancements to the browser interface for TFS 2013 and 2015.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

TFS+拡張機能のCRXファイルをダウンロード

TFS+拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        TFS 2013 and 2015 Web Interface Improvements

Features:
-Dark Theme
-Vertically Re-sizable Text Boxes
-Maximize/Restore Button for Work Item Dialog Windows

Changed in 0.0.7:
-Added support for TFS 2015.
-Maximize/restore button now works correctly when multiple work item dialog windows are open.
-Corrected some small dark theme issues.

Changed in 0.0.5 and 0.0.6:
-Corrected some dark theme issues.

New in 0.0.4:
-Replaced buggy built-in resize method with custom method that adjusts other page content positioning to prevent overlap.
-Added a maximize/restore button for work item dialog windows
-Corrected some dark theme issues.

Use the TFS+ button to add a website for the extension to modify.

Options:
Sites - One site per line to match against the current page address
Use Dark Theme - Toggles the dark theme for all sites

Sites added with the TFS+ button will be matched only by the DNS address, ignoring the path:
Rule: tfs.example.com
Matches: https://tfs.example.com/tfs/
Fails: https://tfs.example.org/tfs/

Any manual additions to the Sites list will match if it is contained anywhere within the current page address:
Rule: https://tfs.
Matches: https://tfs.example.com/tfs/
Fails: https://www.tfs.example/tfs/

Note: Some functionality may not become active until the page is refreshed.


This extension is not in any way affiliated with Microsoft. All trademarks, including TFS and the Visual Studio Logo are properties of Microsoft.                    

拡張機能の基本情報

名前 TFS+ TFS+
ID mkmgiophehinjmcmkdcdpiodoleppcoc
公式URL https://chrome.google.com/webstore/detail/tfs+/mkmgiophehinjmcmkdcdpiodoleppcoc
説明 Enhancements to the browser interface for TFS 2013 and 2015.
ファイルサイズ 39.46 KB
インストール数 483
現在のバージョン 0.0.7
最終更新日 2016-09-12
公開日 2016-09-12
評価 3.57/5 合計 7 レビュー
開発者 eakosin
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TFS+",
    "description": "Enhancements to the browser interface for TFS 2013 and 2015.",
    "version": "0.0.7",
    "short_name": "TFS+",
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/onload.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "js\/options.js",
        "js\/popup.js",
        "js\/fixes.js",
        "js\/arrive-2.0.0.min.js",
        "css\/theme.css",
        "css\/fixes.css",
        "css\/options.css",
        "images\/logo19.png",
        "images\/right.png",
        "images\/left.png",
        "images\/down.png",
        "images\/up.png",
        "images\/progress.gif",
        "images\/bigprogress.gif",
        "images\/spinner.gif",
        "images\/maximize.png"
    ],
    "permissions": [
        "storage",
        "tabs"
    ],
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "images\/logo19.png",
        "default_popup": "popup.html"
    }
}