Public IP
Information about your public IP
O que é Public IP?
Public IP é uma extensão do Chrome desenvolvida por sunkike, e sua principal característica é "Information about your public IP".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Public IP
Baixe arquivos de extensão Public IP no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | |
ID | hdncepcaknamfckdlajmjamjegcnjaea |
URL Oficial | https://chrome.google.com/webstore/detail/public-ip/hdncepcaknamfckdlajmjamjegcnjaea |
Descrição | Information about your public IP |
Tamanho do Arquivo | 288 KB |
Contagem de Instalações | 56 |
Versão Atual | 1.0.1 |
Última Atualização | 2015-03-07 |
Data de Publicação | 2015-03-07 |
Classificação | 1.00/5 Total de 1 Avaliações |
Desenvolvedor | sunkike |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } |