Print TFS Work Items
This extension allows you to print TFS Work Items right from your Chrome
ما هو Print TFS Work Items؟
Print TFS Work Items هو إضافة Chrome تم تطويرها بواسطة nikosananikov، والميزة الرئيسية لها هي "This extension allows you to print TFS Work Items right from your Chrome".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Print TFS Work Items
قم بتنزيل ملفات الامتداد Print TFS Work Items بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
The easiest way to print your Work Items from TFS. Though there are some rules (yet): Your UI, BE, QC tasks should have corresponding tags ('UI', 'BE', 'QC') and you have to sort your backlog table columns in next order: 'ID' -> 'Title -> 'Assigned To' -> 'Remaining Work' -> 'Effort' -> 'Tags'. That's all. Go to TFS, click extension icon, select type of WI you want to get and click 'Print'. Fixed compatibility issues; added Back To TFS button; improved printed tasks UX.
معلومات أساسية عن التمديد
الاسم | |
ID | focfnfefaagmhgijdfkbhjjkpoepmfhl |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/print-tfs-work-items/focfnfefaagmhgijdfkbhjjkpoepmfhl |
الوصف | This extension allows you to print TFS Work Items right from your Chrome |
حجم الملف | 204 KB |
عدد التثبيتات | 270 |
النسخة الحالية | 1.95 |
آخر تحديث | 2015-10-30 |
تاريخ النشر | 2015-10-30 |
تقييم | 4.43/5 مجموع تقييمات 7 |
المطور | nikosananikov |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Print TFS Work Items", "description": "This extension allows you to print TFS Work Items right from your Chrome", "version": "1.95", "page_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Print your tasks!" }, "icons": { "48": "icon.png", "128": "icon.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "activeTab", "tabs", "declarativeContent" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "print.js", "jquery-2.1.3.min.js" ], "css": [ "progress.css" ] } ] } |