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 με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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:\/\/*\/" ] } |