PicPicker
A picture picker
O que é PicPicker?
PicPicker é uma extensão do Chrome desenvolvida por walnutzhang, e sua principal característica é "A picture picker".
Baixar o arquivo CRX da Extensão PicPicker
Baixe arquivos de extensão PicPicker 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
A Chrome extension to list all the pictures of a page, including imgs and backgrounds. Use it if you want to download pictures that you can't direct right click and save.
Informações Básicas da Extensão
Nome | PicPicker |
ID | jlchgfmpgjodcofcneekkhkjibjpjlia |
URL Oficial | https://chromewebstore.google.com/detail/picpicker/jlchgfmpgjodcofcneekkhkjibjpjlia |
Descrição | A picture picker |
Tamanho do Arquivo | 17.8 KB |
Contagem de Instalações | 118 |
Versão Atual | 0.1 |
Última Atualização | 2016-12-05 |
Data de Publicação | 2016-12-05 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | walnutzhang |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/walnutzhang/PicPicker |
URL da Página de Ajuda | https://github.com/walnutzhang/PicPicker |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PicPicker", "description": "A picture picker", "version": "0.1", "author": "WalnutZhang", "homepage_url": "https:\/\/github.com\/walnutzhang\/PicPicker", "icons": { "128": "icon128.png", "48": "icon48.png" }, "browser_action": { "default_icon": "icon48.png" }, "permissions": [ "activeTab" ], "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "css": [ "content_styles.css" ], "js": [ "zepto.min.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "web_accessible_resources": [ "content_styles.css" ] } |