Jenkins Status Tab
Show the status of a Jenkins build in the tab title.
Jenkins Status Tab क्या है?
Jenkins Status Tab christianvuerings द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Show the status of a Jenkins build in the tab title."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Jenkins Status Tab एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ URL | 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:\/\/*\/" ] } |