ip-x-x-x-x.ec2.internal to IPs

Converts all the ip-x-x-x-x.ec2.internal to it's IP format

Was ist ip-x-x-x-x.ec2.internal to IPs?

ip-x-x-x-x.ec2.internal to IPs ist eine Chrome-Erweiterung, die von https://ashwanthkumar.in entwickelt wurde, und ihr Hauptmerkmal ist "Converts all the ip-x-x-x-x.ec2.internal to it's IP format".

Erweiterungsscreenshots

screenshot

ip-x-x-x-x.ec2.internal to IPs-Erweiterungs-CRX-Datei herunterladen

Laden Sie ip-x-x-x-x.ec2.internal to IPs-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        If you've ever been frustrated by the `.ec2.internal` domain names on your hadoop / spark clusters? Especially when you want to view the Task logs and the chrome shows you "DNS not resolved"? Then this plugin is for you.

The plugin transforms all "ip-x-x-x-x.ec2.internal" on links to "x.x.x.x" (IP Address). So as long as you can access the IP address directly from your chrome, it should work.                    

Grundlegende Informationen zur Erweiterung

Name ip-x-x-x-x.ec2.internal to IPs ip-x-x-x-x.ec2.internal to IPs
ID fjgpmnicfiedkeikinlmbpjloefhgnef
Offizielle URL https://chromewebstore.google.com/detail/ip-x-x-x-xec2internal-to/fjgpmnicfiedkeikinlmbpjloefhgnef
Beschreibung Converts all the ip-x-x-x-x.ec2.internal to it's IP format
Dateigröße 16.16 KB
Installationsanzahl 34
Aktuelle Version 1.0.1
Letztes Update 2021-12-15
Veröffentlichungsdatum 2016-07-08
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://ashwanthkumar.in
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/ashwanthkumar/chrome-ec2.internal
Hilfeseite URL https://github.com/ashwanthkumar/chrome-ec2.internal/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ip-x-x-x-x.ec2.internal to IPs",
    "version": "1.0.1",
    "manifest_version": 3,
    "description": "Converts all the ip-x-x-x-x.ec2.internal to it's IP format",
    "homepage_url": "https:\/\/github.com\/ashwanthkumar\/chrome-ec2.internal",
    "icons": {
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/link-changer.js"
            ]
        }
    ]
}