Visual Studio Online Extension

This extension provides some missing features in Visual Studio Online

Visual Studio Online Extensionคืออะไร?

Visual Studio Online Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dt1820 และคุณลักษณะหลักของมันคือ "This extension provides some missing features in Visual Studio Online"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Visual Studio Online Extension

ดาวน์โหลดไฟล์ส่วนขยาย Visual Studio Online Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension provides some missing features in Visual Studio Online:

Provides the following functionality:
 - Add as task from the Work Item pop out while still on the descriptions tab
 - Add a standardized template for filling out the description of a Work Item from the pop out
    Format:
       Assumptions:
       Scope:
       Boundaries:
 - Export queries and views to a CSV file
 - Pull request notifications to alert you when a pull request build is complete
 - Enable Key Indent allows the use of Alt+i (indent) and Alt+o (outdent) key combinations to control indenting when in a textarea

-Update 09.24.2016
--Updated to work with new VSO release
--removed  **Filter task from the board view to only yours** since VSO now has filters

-Update 12.29.2015
--Updated to work with the new VSO release.
--Fixed bug where add task and template did not work from query view.

-Update 08.01.2017
--Added support for inserting Acceptance Criteria sub categories for ordered lists and text
----Available categories (API Services, Security, Platform, Localization, Configuration Settings, Field Level Validation, Branding & Skinning , Error/Message Handling, Logging/Auditing)
----This will place the list after the last ordered item or at the end of the content area
--Bug fix for Export Queries

-Update 09.01.2017
--Add Sprint Capacity Calculator                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Visual Studio Online Extension Visual Studio Online Extension
ID obbdpahfdnmmbjnobociliflilflnbca
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/visual-studio-online-exte/obbdpahfdnmmbjnobociliflilflnbca
คำอธิบาย This extension provides some missing features in Visual Studio Online
ขนาดไฟล์ 884 KB
จำนวนการติดตั้ง 6,271
เวอร์ชันปัจจุบัน 2.2.3
อัปเดตครั้งล่าสุด 2017-09-10
วันที่เผยแพร่ 2017-09-10
คะแนน 3.69/5 รวมทั้งหมด 29 คะแนน
ผู้พัฒนา dt1820
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Visual Studio Online Extension",
    "description": "This extension provides some missing features in Visual Studio Online",
    "manifest_version": 2,
    "version": "2.2.3",
    "page_action": {
        "default_icon": "images\/vso19.png",
        "default_title": "VSO Utilities"
    },
    "icons": {
        "16": "images\/vso.png",
        "128": "images\/vso128.png"
    },
    "content_scripts": [
        {
            "css": [
                "styles\/content.css"
            ],
            "matches": [
                "https:\/\/*.visualstudio.com\/*"
            ],
            "js": [
                "scripts\/jquery.min.js",
                "scripts\/alphanumeric.js",
                "scripts\/actions\/addscrumtemplate.js",
                "scripts\/actions\/exportvsodata.js",
                "scripts\/actions\/notifypullrequest.js",
                "scripts\/actions\/showaddtask.js",
                "scripts\/actions\/showmyvsotasks.js",
                "scripts\/actions\/keyindenting.js",
                "scripts\/actions\/addAcceptanceCriteria.js",
                "scripts\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "web_accessible_resources": [
        "images\/*.png",
        "fonts\/*",
        "toolbar.html"
    ],
    "permissions": [
        "activeTab",
        "storage",
        "declarativeContent"
    ]
}