Public IP
Information about your public IP
Public IPとは何ですか?
Public IPはsunkikeによって開発されたChromeの拡張機能で、その主な機能は「Information about your public IP」です。
拡張機能のスクリーンショット
Public IP拡張機能のCRXファイルをダウンロード
Public IP拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Information about your public IP Features: - You can see your public IP in a button on Chrome. - You can see your country icon of your public IP. - If you mouse over the flag, you can see your public ip. - if your ip changes the button shows the times that it changed. If you click the button it shows the last IP's changes. If you want new features don't doubt to leave a comment. This is a evolution of this chrome extension: https://chrome.google.com/webstore/detail/info-ip/ljaikkdaeokocficpgcbaicnchpghcbh
拡張機能の基本情報
名前 | |
ID | hdncepcaknamfckdlajmjamjegcnjaea |
公式URL | https://chrome.google.com/webstore/detail/public-ip/hdncepcaknamfckdlajmjamjegcnjaea |
説明 | Information about your public IP |
ファイルサイズ | 288 KB |
インストール数 | 56 |
現在のバージョン | 1.0.1 |
最終更新日 | 2015-03-07 |
公開日 | 2015-03-07 |
評価 | 1.00/5 合計 1 レビュー |
開発者 | sunkike |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Public IP", "short_name": "Public_ip", "version": "1.0.1", "minimum_chrome_version": "18", "description": "Information about your public IP", "icons": { "16": "\/images\/icon16.png", "48": "\/images\/icon48.png", "128": "\/images\/icon128.png" }, "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": { "19": "\/images\/icon16.png", "38": "\/images\/icon48.png" }, "default_title": "Public IP", "default_popup": "popup.html" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "webRequest", "storage" ], "content_scripts": [ { "all_frames": false, "run_at": "document_end", "js": [ "jquery-infoip.js", "business.js" ], "css": [ "css\/customStyleIP.css" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "web_accessible_resources": [ "images\/iconFlags\/24\/*.png", "functionsIP.js" ] } |