Public IP Display
Displays your IP address and country using lookup services of your choice. Auto-refreshes, notifies, and displays.
Public IP Display là gì?
Public IP Display là một tiện ích mở rộng Chrome được phát triển bởi Marnes, và tính năng chính của nó là "Displays your IP address and country using lookup services of your choice. Auto-refreshes, notifies, and displays.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Public IP Display
Tải xuống các tệp mở rộng Public IP Display dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
**This extension won't be maintained further.** I'm shelving this project due to lack of interest/utility and too much burden. The addon will remain available for download as long as the store allows, and the source on gitlab (https://gitlab.com/Marnes-group/webextensions) will also remain available to fork. **I do have a greasyfork account (https://greasyfork.org/en/users/18593-marnes) and may publish works there in the future.** I have mild intentions to reimplement the core functionality of CSL, IBCP, and DID as public userscripts. Also available for Firefox: https://addons.mozilla.org/firefox/addon/public-ip-display/ Public IP Display fetches your IP address and country from an IP service of your choice and displays it in a pop-out panel. Please check the linked homepage for more complete information. Issues can be filed on the linked support site.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Public IP Display |
ID | lpbdnabmlikokalkbdoadccamhcfmnga |
URL Chính Thức | https://chromewebstore.google.com/detail/public-ip-display/lpbdnabmlikokalkbdoadccamhcfmnga |
Mô tả | Displays your IP address and country using lookup services of your choice. Auto-refreshes, notifies, and displays. |
Kích Thước Tệp | 2.03 MB |
Số Lần Cài Đặt | 893 |
Phiên Bản Hiện Tại | 4.5.0 |
Cập Nhật Lần Cuối | 2023-06-26 |
Ngày Phát Hành | 2019-11-27 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Marnes |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://addons.mozilla.org/firefox/addon/public-ip-display/ |
URL Trang Trợ Giúp | https://gitlab.com/Marnes/public-ip-display/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "applications": { "gecko": { "id": "jid0-kir41BQbr1lrsxH7OtZiYZsROXw@jetpack" } }, "name": "Public IP Display", "short_name": "PID", "version": "4.5.0", "description": "Displays your IP address and country using lookup services of your choice. Auto-refreshes, notifies, and displays.", "author": "[email protected]", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "browser_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" }, "default_popup": "popup.html" }, "options_ui": { "page": "options.html", "chrome_style": true }, "background": { "page": "background.html", "persistent": false }, "permissions": [ "alarms", "clipboardWrite", "storage", "notifications", "https:\/\/curlmyip.net\/*", "https:\/\/icanhazip.com\/*", "https:\/\/jsonip.com\/*", "https:\/\/myexternalip.com\/*", "https:\/\/bot.whatismyipaddress.com\/*", "https:\/\/freegeoip.net\/*", "https:\/\/ifconfig.co\/*" ] } |