Jenkins Status Tab
Show the status of a Jenkins build in the tab title.
ما هو Jenkins Status Tab؟
Jenkins Status Tab هو إضافة Chrome تم تطويرها بواسطة christianvuerings، والميزة الرئيسية لها هي "Show the status of a Jenkins build in the tab title.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Jenkins Status Tab
قم بتنزيل ملفات الامتداد Jenkins Status Tab بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Show the status of a Jenkins build in the tab.
Notes:
- This plugin automatically enables auto refresh which may cause some heavy data usage. معلومات أساسية عن التمديد
| الاسم | |
| ID | bpfcpdnjoengdphlnneoilmphaelapnn |
| عنوان URL الرسمي | https://chrome.google.com/webstore/detail/jenkins-status-tab/bpfcpdnjoengdphlnneoilmphaelapnn |
| الوصف | Show the status of a Jenkins build in the tab title. |
| حجم الملف | 30.56 KB |
| عدد التثبيتات | 17 |
| النسخة الحالية | 0.0.1 |
| آخر تحديث | 2016-11-23 |
| تاريخ النشر | 2016-11-23 |
| تقييم | 1.00/5 مجموع تقييمات 1 |
| المطور | christianvuerings |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | https://github.com/christianvuerings/jenkins-status-tab |
| عنوان صفحة المساعدة | https://github.com/christianvuerings/jenkins-status-tab/issues |
| اللغات المدعومة | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Jenkins Status Tab",
"description": "Show the status of a Jenkins build in the tab title.",
"version": "0.0.1",
"content_scripts": [
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"js": [
"icons.js",
"execute.js"
]
}
],
"icons": {
"32": "32.png",
"64": "64.png",
"128": "128.png"
},
"browser_action": {
"default_title": "Make this page blue"
},
"permissions": [
"tabs",
"activeTab",
"https:\/\/*\/",
"http:\/\/*\/"
]
} | |