Azure DevOps workitem info

Get info for Azure DevOps workitems, including history data

Azure DevOps workitem infoคืออะไร?

Azure DevOps workitem info เป็นส่วนขยายของ Chrome ที่พัฒนาโดย atotmakov.dev และคุณลักษณะหลักของมันคือ "Get info for Azure DevOps workitems, including history data"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Azure DevOps workitem info

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

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

                        Easy analyse all azure devops workitem's fields change in one place.
Work with Azure DevOps workitems.
Show history of workitem fields in separate window.
Just select workitem ID, right mouse click on selected, than «Get TFS Workitem History».
Extension will load history info for selected workitem ID.

To make the extension work, you need to highlight workitem ID with the mouse.

What's new.
0.0.0.5 - Now you can choose diff mode for display field's history.
0.0.0.6 - Add support for long workitem history, more than 200 revisions.
0.0.0.7 - The time elapsed between comments in the workitem is displayed in the comments header. Changed the display of the comment date in the work item. Plus options dialog.
0.0.0.10 - Add pivot table by specific field. Clean up fields table.
0.0.0.12 - Add BETA feature - history in tfs query, see details in options tab.                    

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

ชื่อ Azure DevOps workitem info Azure DevOps workitem info
ID ociekhbkajgbjdenikmandhpjlekckee
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/azure-devops-workitem-inf/ociekhbkajgbjdenikmandhpjlekckee
คำอธิบาย Get info for Azure DevOps workitems, including history data
ขนาดไฟล์ 182 KB
จำนวนการติดตั้ง 110
เวอร์ชันปัจจุบัน 0.0.0.12
อัปเดตครั้งล่าสุด 2023-03-25
วันที่เผยแพร่ 2020-06-05
ผู้พัฒนา atotmakov.dev
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/atotmakov/chrome_ext
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Azure DevOps workitem info",
    "author": "atotmakov",
    "version": "0.0.0.12",
    "description": "Get info for Azure DevOps workitems, including history data",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "dt.js",
                "time.js",
                "calculatedcolumn.js",
                "workitem.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dt.js",
                "time.js",
                "calculatedcolumn.js",
                "workitem.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "action": {
        "default_icon": "img\/icon16.png",
        "default_popup": "popup\/index.html",
        "default_title": "Azure DevOps workitem info"
    }
}