show ip
show ip
什麼是show ip?
show ip是由mojidong開發的Chrome擴展程式,該擴展的主要功能是“show ip”。
擴展截圖
下載show ip擴展crx文件
下載show ip擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
显示请求页面的ip地址,帮助用户根据ip来区分环境。
2023-12-21
1. 迁移到manifest v3
2019-04-23
1.修复安装报“无法加载扩展程序图标“images/icon16.png”的错误。
2.调整默认显示位置为右侧。
2018-10-07
1.移除开发者工具面板。
2.修复IPV6显示问题。
2014-1-11
1.修复pdf全屏时覆盖整个屏幕的问题。
2.修复导航页显示undefined的问题。
3.新增开发者工具面板。
4.调整了显示的字体。 擴展基本資訊
| 名稱 | |
| ID | nfdipejbaaclaioanjipeblnbplaeabl |
| 官方網址 | https://chromewebstore.google.com/detail/show-ip/nfdipejbaaclaioanjipeblnbplaeabl |
| 簡介 | show ip |
| 檔案大小 | 66.29 KB |
| 安裝次數 | 1,263 |
| 目前版本 | 1.6.1 |
| 更新時間 | 2023-12-22 |
| 上架時間 | 2019-04-22 |
| 評分 | 4.22/5 共 9 次評分 |
| 開發者 | mojidong |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "show ip",
"version": "1.6.1",
"description": "show ip",
"minimum_chrome_version": "88",
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"background": {
"service_worker": "listen_req.js"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [
"show_ip.css"
],
"js": [
"jquery.js",
"show_ip.js"
]
}
],
"permissions": [
"webNavigation",
"webRequest"
],
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
} | |