PixPeeker
Hover Over links to see images overlaid on current page
O que é PixPeeker?
PixPeeker é uma extensão do Chrome desenvolvida por howlowck, e sua principal característica é "Hover Over links to see images overlaid on current page".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão PixPeeker
Baixe arquivos de extensão PixPeeker 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
An extension for easy viewing when on image-centered sharing sites like reddit as it loads and renders the images on the current page when you hover over the link. The extension works well with Imgur and Livememe. Supports links that link to jpeg, png, and gif as well. Hover over any text links or image links, you should see the image on the right upper corner. No ad injections of course. All the code is open source on github.
Informações Básicas da Extensão
Nome | |
ID | lacjlgodidoaogaoldfodclplagkhegl |
URL Oficial | https://chrome.google.com/webstore/detail/pixpeeker/lacjlgodidoaogaoldfodclplagkhegl |
Descrição | Hover Over links to see images overlaid on current page |
Tamanho do Arquivo | 51.43 KB |
Contagem de Instalações | 12 |
Versão Atual | 0.0.6 |
Última Atualização | 2014-01-13 |
Data de Publicação | 2014-01-13 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | howlowck |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/howlowck/pixpeek |
URL da Página de Ajuda | https://github.com/howlowck/pixpeek/issues/new |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "0.0.6", "name": "PixPeeker", "description": "Hover Over links to see images overlaid on current page", "browser_action": { "default_icon": "media\/on.png", "default_title": "PixPeeker-Enabled" }, "permissions": [ "webNavigation" ], "background": { "scripts": [ "events.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "app.js" ] } ] } |