IPvFoo

Display the server IP address, with a realtime summary of IPv4, IPv6, and HTTPS information across all page elements.

Τι είναι το IPvFoo;

Το IPvFoo είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://pmarks.net, και η κύρια λειτουργία του είναι "Display the server IP address, with a realtime summary of IPv4, IPv6, and HTTPS information across all page elements.".

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

screenshot
screenshot

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

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

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

                        I made this extension to raise everyday awareness of the global IPv4 to IPv6 transition.  To respect your privacy, it keeps data in RAM and treats the network as read-only.  I can maintain this without ads because there are no server costs.

IPvFoo's action icon shows a large red 4 or green 6 to indicate whether the outer page was fetched using IPv4 or IPv6.  If the page connects to other domains, a smaller 4 or 6 appears alongside.

When you click the icon, a table appears with a row for each domain:

- A padlock icon for http://, https://, or a mix of both.

- The IPv4 or IPv6 address.  If connections span more than one address, the most recent one wins.  The address is highlighted in yellow while connections are open.

- "⭮" for cached requests.  The IP address may be stale if no connection was made.

- "S" for WebSocket handshakes. The connection may still be active even if the address is not highlighted.

- "W" if data was fetched through a Service Worker.  These requests are linked to an origin (e.g. https://example.com/) instead of a tabId, so the same request may appear in multiple tabs.

Clicking on a hostname or address will select it for convenient copying.  There is a right-click option to look up addresses on bgp.he.net.  I'm not affiliated, it's just my favorite service.

Hostnames longer than 50 characters are truncated in the middle to save space. You can click the (...) to expand, but the full text remains available for copying regardless.

IPvFoo is Free Software (Apache 2.0 license)                    

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

Όνομα IPvFoo IPvFoo
ID ecanpcehffngcegjmadlcijfolapggal
Επίσημο URL https://chromewebstore.google.com/detail/ipvfoo/ecanpcehffngcegjmadlcijfolapggal
Περιγραφή Display the server IP address, with a realtime summary of IPv4, IPv6, and HTTPS information across all page elements.
Μέγεθος Αρχείου 39.79 KB
Αριθμός Εγκαταστάσεων 115,609
Τρέχουσα Έκδοση 2.18
Τελευταία Ενημέρωση 2023-12-14
Ημερομηνία Δημοσίευσης 2018-09-06
Αξιολόγηση 4.83/5 Συνολικά 176 Αξιολογήσεις
Προγραμματιστής https://pmarks.net
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/pmarks-net/ipvfoo
URL της Σελίδας Πολιτικής Απορρήτου https://raw.githubusercontent.com/pmarks-net/ipvfoo/master/misc/privacy_policy.txt
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IPvFoo",
    "manifest_version": 3,
    "version": "2.18",
    "description": "Display the server IP address, with a realtime summary of IPv4, IPv6, and HTTPS information across all page elements.",
    "homepage_url": "https:\/\/github.com\/pmarks-net\/ipvfoo",
    "icons": {
        "16": "icon16.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "icon16_transparent.png"
        }
    },
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "webNavigation",
        "webRequest"
    ],
    "host_permissions": [
        ""
    ]
}