Unitify
Convert units to your preferred tongue, in-page.
O que é Unitify?
Unitify é uma extensão do Chrome desenvolvida por Steve Pike, e sua principal característica é "Convert units to your preferred tongue, in-page.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Unitify
Baixe arquivos de extensão Unitify 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
Unitify translates units and measurements in webpages in-place, so that you don't have to think about converting them yourself.
Informações Básicas da Extensão
Nome | Unitify |
ID | amhbhaikpableefmhhongikpbefdcgmf |
URL Oficial | https://chromewebstore.google.com/detail/unitify/amhbhaikpableefmhhongikpbefdcgmf |
Descrição | Convert units to your preferred tongue, in-page. |
Tamanho do Arquivo | 63.65 KB |
Contagem de Instalações | 38 |
Versão Atual | 1.0.1 |
Última Atualização | 2013-03-26 |
Data de Publicação | 2013-03-26 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Steve Pike |
Tipo de Pagamento | free |
Site da Extensão | http://github.com/stringfellow/unitify |
URL da Página de Ajuda | http://github.com/stringfellow/unitify/issues |
Idiomas Suportados | en-GB |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Unitify", "description": "Convert units to your preferred tongue, in-page.", "version": "1.0.1", "options_page": "options.html", "browser_action": { "default_icon": "globe.png", "default_popup": "options.html" }, "icons": { "128": "globe.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery-1.9.1.min.js", "underscore-min.js", "unitify.js" ], "run_at": "document_end" } ], "permissions": [ "storage" ] } |