Bookmark Image
Bookmark images from web
O que é Bookmark Image?
Bookmark Image é uma extensão do Chrome desenvolvida por http://habilesoft.com, e sua principal característica é "Bookmark images from web".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Bookmark Image
Baixe arquivos de extensão Bookmark Image 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
We all face some situation when we have searched some images, and after some days we need that image again, but there is no simple way to bookmark a image we liked, searching a liked image again consumes lot of time. Bookmark image extension helps you in bookmarking image you liked. It brings a super easy way to save image links, just right click on image and click bookmark it, Extension also includes a very user friendly view page where you can see all bookmarked images. Bookmark image completely integrated with Google image and it stores official image link, so you don't just have cache image. you can visit official site of image again.
Informações Básicas da Extensão
Nome | |
ID | flmlfccbjpnpgfpbolfbbnlkccbanoji |
URL Oficial | https://chrome.google.com/webstore/detail/bookmark-image/flmlfccbjpnpgfpbolfbbnlkccbanoji |
Descrição | Bookmark images from web |
Tamanho do Arquivo | 352 KB |
Contagem de Instalações | 221 |
Versão Atual | 1.0.0 |
Última Atualização | 2014-10-28 |
Data de Publicação | 2014-10-28 |
Classificação | 4.13/5 Total de 8 Avaliações |
Desenvolvedor | http://habilesoft.com |
Tipo de Pagamento | free |
Site da Extensão | http://habilesoft.com/product/bookmark-image/ |
URL da Página de Ajuda | http://habilesoft.com/product/bookmark-image/ |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bookmark Image", "version": "1.0.0", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon\/16X16.png", "48": "images\/icon\/48X48.png", "128": "images\/icon\/128X128.png" }, "default_locale": "en", "background": { "scripts": [ "sample.js" ] }, "browser_action": { "default_icon": { "19": "images\/icon\/19X19.png", "38": "images\/icon\/38X38.png", "128": "images\/icon\/128X128.png" }, "default_title": "Bookmark Image", "default_popup": "browseraction\/popup.html" }, "omnibox": { "keyword": "Bookmark Image" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "include_globs": [ "*:\/\/*.google.*\/*" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ], "web_accessible_resources": [ "script.js" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "contextMenus", "storage", "tabs", "notifications", "background", "cookies" ] } |