TFS PBI Print
Printing a TFS PBI
ما هو TFS PBI Print؟
TFS PBI Print هو إضافة Chrome تم تطويرها بواسطة RemcoS، والميزة الرئيسية لها هي "Printing a TFS PBI".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة TFS PBI Print
قم بتنزيل ملفات الامتداد TFS PBI Print بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Print a Product Backlog Item from a TFS Scrum productbacklog.
Sources on github https://github.com/RemcoSpil/TFS-PBI-Print
Change log 0.0.3
- Support for printing a bug added
Change log 0.0.2
- Support for Scrum procestemplate
- Support for TFS2013 / Visualstudio.com معلومات أساسية عن التمديد
| الاسم | |
| ID | lnpgclcdbomjnejnkndfhigplabjekje |
| عنوان URL الرسمي | https://chrome.google.com/webstore/detail/tfs-pbi-print/lnpgclcdbomjnejnkndfhigplabjekje |
| الوصف | Printing a TFS PBI |
| حجم الملف | 47.42 KB |
| عدد التثبيتات | 15 |
| النسخة الحالية | 0.0.3 |
| آخر تحديث | 2016-05-04 |
| تاريخ النشر | 2016-05-04 |
| تقييم | 4.00/5 مجموع تقييمات 1 |
| المطور | RemcoS |
| نوع الدفع | free |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "TFS PBI Print",
"version": "0.0.3",
"description": "Printing a TFS PBI",
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"page_action": {
"default_title": "Print a PBI",
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"background": {
"persistent": false,
"scripts": [
"js\/background.js"
]
},
"content_security_policy": "script-src 'self'; img-src *; object-src 'self'",
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"js\/get_pbi_info.js"
],
"run_at": "document_idle",
"all_frames": false
}
],
"permissions": [
"tabs"
]
} | |