QuickIP
Quickly find and copy your public IPv4 and IPv6 addresses
什么是QuickIP?
QuickIP是由MDMower开发的Chrome扩展程序,该扩展的主要功能是“Quickly find and copy your public IPv4 and IPv6 addresses”。
扩展截图
下载QuickIP扩展crx文件
下载QuickIP扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
IP versions and resolvers are configurable in Options. You can click the browser action bubble to see your IP addresses and copy them with a click of a button, or you can use keyboard shortcuts to copy them to your clipboard in the background.
This is open source software: https://github.com/mdmower/quickip-chrome
No user data is collected by this extension and no information is sent back to the author. 扩展基本信息
| 名称 | |
| ID | fminocopafmpcihgnilcacgjpcppacfn |
| 官方URL | https://chromewebstore.google.com/detail/quickip/fminocopafmpcihgnilcacgjpcppacfn |
| 简介 | Quickly find and copy your public IPv4 and IPv6 addresses |
| 文件大小 | 61.56 KB |
| 安装次数 | 68 |
| 当前版本 | 5.0.3 |
| 更新时间 | 2023-12-06 |
| 上架时间 | 2020-05-27 |
| 开发者 | MDMower |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/mdmower/quickip-chrome |
| 帮助页面URL | https://github.com/mdmower/quickip-chrome/issues |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"background": {
"service_worker": "sw.js"
},
"action": {
"default_icon": {
"16": "icons\/icon16.png",
"19": "icons\/icon19.png",
"24": "icons\/icon24.png",
"32": "icons\/icon32.png",
"38": "icons\/icon38.png",
"48": "icons\/icon48.png"
},
"default_popup": "bubble.html",
"default_title": "Find your IP"
},
"commands": {
"quick-copy-ipv4": {
"suggested_key": {
"default": "Ctrl+Shift+4",
"mac": "Command+Shift+4"
},
"description": "Copy IPv4 to clipboard"
},
"quick-copy-ipv6": {
"suggested_key": {
"default": "Ctrl+Shift+6",
"mac": "Command+Shift+6"
},
"description": "Copy IPv6 to clipboard"
}
},
"description": "Quickly find and copy your public IPv4 and IPv6 addresses",
"icons": {
"16": "icons\/icon16.png",
"19": "icons\/icon19.png",
"24": "icons\/icon24.png",
"32": "icons\/icon32.png",
"38": "icons\/icon38.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"manifest_version": 3,
"name": "QuickIP",
"options_page": "options.html",
"permissions": [
"clipboardWrite",
"offscreen",
"storage"
],
"host_permissions": [
"https:\/\/*.ipify.org\/",
"https:\/\/*.ident.me\/",
"https:\/\/*.icanhazip.com\/",
"https:\/\/*.wtfismyip.com\/"
],
"version": "5.0.3"
} | |