Server IP
Displays server IP address on every website
Server IP क्या है?
Server IP yokris.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Displays server IP address on every website"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Server IP एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
The "Server IP" extension adds a small box to each visited page to display the country flag depicting the location of the current website's server and provides a multitude of tools such as whois, Geolocation, and domain information on click. Knowing the server's physical location adds an extra layer of awareness to your browsing and can be useful to indicate the native languages and legal jurisdictions that may apply. Additional information on the server is accessible by clicking on the shown IP address. Features: 1. Converts IP to Flag without resorting to an external server. It works completely offline 2. Provides more info about the IP address on a click 3. Flag's position can be altered by dragging and dropping it to a new location. 4. Uses an up-to-date offline MaxMind database to convert IP addresses to country. 5. Periodically updates the database from GitHub 6. Works on manifest v3 (the extension idles when it is not active, so it does not use any resources when not needed) -- If you prefer the flag to appear in your action area, try: https://chrome.google.com/webstore/detail/country-flags-ip-whois/bffjckjhidlcnenenacdahhpbacpgapo
एक्सटेंशन की मूल जानकारी
नाम | Server IP |
ID | adcbaggcjppnkmhfmjcdgagmggnfeikh |
आधिकारिक URL | https://chromewebstore.google.com/detail/server-ip/adcbaggcjppnkmhfmjcdgagmggnfeikh |
विवरण | Displays server IP address on every website |
फ़ाइल का आकार | 3.24 MB |
स्थापना संख्या | 4,350 |
वर्तमान संस्करण | 0.2.4 |
अंतिम अपडेट | 2024-01-15 |
प्रकाशन तिथि | 2020-02-14 |
रेटिंग | 4.14/5 कुल 7 रेटिंग्स |
डेवलपर | yokris.dev |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://webextension.org/listing/country-flags.html?from=server-ip |
सहायता पृष्ठ URL | https://webextension.org/listing/country-flags.html?from=server-ip |
गोपनीयता नीति पृष्ठ URL | https://add0n.com/policies/yokris.dev.txt |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Server IP", "description": "Displays server IP address on every website", "version": "0.2.4", "manifest_version": 3, "permissions": [ "storage", "webRequest", "scripting", "alarms" ], "host_permissions": [ "*:\/\/*\/*" ], "background": { "service_worker": "worker.js" }, "homepage_url": "https:\/\/webextension.org\/listing\/country-flags.html?from=server-ip", "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png", "256": "data\/icons\/256.png", "512": "data\/icons\/512.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "run_at": "document_start", "js": [ "data\/verify.js" ] } ], "options_ui": { "page": "data\/options\/index.html" }, "web_accessible_resources": [ { "resources": [ "data\/ip\/*" ], "matches": [ "*:\/\/*\/*" ] } ] } |