BackgroundImage Search
This extension shows a Google Image search result for the current page
¿Qué es BackgroundImage Search?
BackgroundImage Search es una extensión de Chrome desarrollada por Unknown, y su función principal es "This extension shows a Google Image search result for the current page".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión BackgroundImage Search
Descarga archivos de extensión BackgroundImage Search en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | BackgroundImage Search |
ID | olemhlpdoebkeehhjgifmemjdafeikld |
URL Oficial | https://chromewebstore.google.com/detail/backgroundimage-search/olemhlpdoebkeehhjgifmemjdafeikld |
Descripción | This extension shows a Google Image search result for the current page |
Tamaño del Archivo | 468 KB |
Cantidad de Instalaciones | 201 |
Versión Actual | 1.0 |
Última Actualización | 2019-03-08 |
Fecha de Publicación | 2019-03-08 |
Desarrollador | Unknown |
Tipo de Pago | free |
Idiomas Soportados | 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" } } |