Google Cloud Console Production Warning

Show a warning when viewing a production environment in the Google Cloud Console, Datastore admin or Stackdriver.

Τι είναι το Google Cloud Console Production Warning;

Το Google Cloud Console Production Warning είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Shane Bell, και η κύρια λειτουργία του είναι "Show a warning when viewing a production environment in the Google Cloud Console, Datastore admin or Stackdriver.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Google Cloud Console Production Warning

Λήψη αρχείων επέκτασης Google Cloud Console Production Warning σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This plugin checks the name of the current project open in the Google Cloud Console and if it is a production project then it shows a big red "PRODUCTION" watermark over the page.

A project is considered a production project if it matches any of the patterns configured in the options. By default
this is any project that matches the pattern `^.*-prod$`

The text and color of the watermark can also be configured in the options ("PRODUCTION" and red by default).

The plugin runs on all http://console.cloud.google.com pages, all https://app.google.stackdriver.com pages as well as the AppEngine datastore admin Python module.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Google Cloud Console Production Warning Google Cloud Console Production Warning
ID dpihknlpffbpjaegjocpbgdickpjiohl
Επίσημο URL https://chrome.google.com/webstore/detail/google-cloud-console-prod/dpihknlpffbpjaegjocpbgdickpjiohl
Περιγραφή Show a warning when viewing a production environment in the Google Cloud Console, Datastore admin or Stackdriver.
Μέγεθος Αρχείου 64.74 KB
Αριθμός Εγκαταστάσεων 526
Τρέχουσα Έκδοση 1.1.3
Τελευταία Ενημέρωση 2019-03-08
Ημερομηνία Δημοσίευσης 2019-03-08
Αξιολόγηση 4.60/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής Shane Bell
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/shanebell/google-cloud-console-production-warning
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/shanebell/JaSON/blob/master/privacy-policy.md
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Cloud Console Production Warning",
    "description": "Show a warning when viewing a production environment in the Google Cloud Console, Datastore admin or Stackdriver.",
    "version": "1.1.3",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "images\/icon16x16.png",
        "48": "images\/icon48x48.png",
        "128": "images\/icon128x128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/console.cloud.google.com\/*",
                "https:\/\/*.appspot.com\/_ah\/datastore_admin*",
                "https:\/\/app.google.stackdriver.com\/*"
            ],
            "js": [
                "javascript\/storage.js",
                "javascript\/script.js",
                "lib\/jquery\/dist\/jquery.min.js",
                "lib\/lodash\/dist\/lodash.min.js"
            ]
        }
    ],
    "manifest_version": 2
}