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 |
| 官方URL | 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:\/\/*\/*"
]
} | |