Localhost detector

Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.

Τι είναι το Localhost detector;

Το Localhost detector είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον milan.chheda, και η κύρια λειτουργία του είναι "Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Localhost detector

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

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

                        It checks the following in the URL and adds the red banner:
1. "localhost"
2. "127.0.0.1"
3. "local."
4. ".local"
5. "staging."
6. ".stg"
7. "dev."
8. "test."
9. ".test"


Let me know, if you want to add any other string that should match and show the red banner.                    

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

Όνομα Localhost detector Localhost detector
ID nkjfadmbkfhmkkkbgghelmjbdaenbngh
Επίσημο URL https://chromewebstore.google.com/detail/localhost-detector/nkjfadmbkfhmkkkbgghelmjbdaenbngh
Περιγραφή Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.
Μέγεθος Αρχείου 37.79 KB
Αριθμός Εγκαταστάσεων 302
Τρέχουσα Έκδοση 0.3
Τελευταία Ενημέρωση 2019-04-25
Ημερομηνία Δημοσίευσης 2019-04-25
Αξιολόγηση 4.00/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής milan.chheda
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Localhost detector",
    "description": "Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.",
    "version": "0.3",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "local.js"
            ],
            "css": [
                "local.css"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ]
}