ShowIp
Show IPv4 & IPv6 addresses of the current webpage without doing external requests to a home server.
ShowIpとは何ですか?
ShowIpはhttps://opensource.teqneers.comによって開発されたChromeの拡張機能で、その主な機能は「Show IPv4 & IPv6 addresses of the current webpage without doing external requests to a home server.」です。
拡張機能のスクリーンショット
ShowIp拡張機能のCRXファイルをダウンロード
ShowIp拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension works with Google Chrome 18 (beta) or higher. 拡張機能の基本情報
| 名前 | |
| ID | agoljmemkbciolpigpabjfkagboolkcj |
| 公式URL | https://chromewebstore.google.com/detail/showip/agoljmemkbciolpigpabjfkagboolkcj |
| 説明 | Show IPv4 & IPv6 addresses of the current webpage without doing external requests to a home server. |
| ファイルサイズ | 54.38 KB |
| インストール数 | 23,164 |
| 現在のバージョン | 1.0 |
| 最終更新日 | 2012-05-19 |
| 公開日 | 2012-05-19 |
| 評価 | 3.50/5 合計 80 レビュー |
| 開発者 | https://opensource.teqneers.com |
| 支払い方法 | free |
| 拡張機能のウェブサイト | http://opensource.teqneers.com/showip.html |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"name": "ShowIp",
"minimum_chrome_version": "18",
"version": "1.0",
"description": "Show IPv4 & IPv6 addresses of the current webpage without doing external requests to a home server.",
"icons": {
"16": "icons\/icon_016.png",
"48": "icons\/icon_048.png",
"128": "icons\/icon_128.png"
},
"permissions": [
"webRequest",
"*:\/\/*\/*"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"all_frames": false,
"css": [
"ip.css"
],
"js": [
"jquery-1.7.1.min.js",
"ip.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_end"
}
],
"manifest_version": 2
} | |