BackgroundImage Search
This extension shows a Google Image search result for the current page
O que é BackgroundImage Search?
BackgroundImage Search é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "This extension shows a Google Image search result for the current page".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão BackgroundImage Search
Baixe arquivos de extensão BackgroundImage Search 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
This will look for the background image in the Div you right click on. It usually works for slideshows. Actual background images may or may not be gotten. It should work. I'll probably won't update this until things break for me so use it as you like. Just right-click the image you want. source can be found here. https://github.com/ibsusu/BackgroundImage-Search
Informações Básicas da Extensão
Nome | BackgroundImage Search |
ID | olemhlpdoebkeehhjgifmemjdafeikld |
URL Oficial | https://chromewebstore.google.com/detail/backgroundimage-search/olemhlpdoebkeehhjgifmemjdafeikld |
Descrição | This extension shows a Google Image search result for the current page |
Tamanho do Arquivo | 468 KB |
Contagem de Instalações | 201 |
Versão Atual | 1.0 |
Última Atualização | 2019-03-08 |
Data de Publicação | 2019-03-08 |
Desenvolvedor | Unknown |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "BackgroundImage Search", "description": "This extension shows a Google Image search result for the current page", "version": "1.0", "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "getbgimg.js" ] } ], "browser_action": { "default_icon": "iconbgimgsearch.png", "default_popup": "popup.html", "default_title": "Get that bg image, Bruh" }, "permissions": [ "activeTab", "https:\/\/ajax.googleapis.com\/", "contextMenus" ], "background": { "scripts": [ "sample.js" ] }, "icons": { "16": "iconbgimgsearchtiny.png" } } |