BackgroundImage Search
This extension shows a Google Image search result for the current page
Cos'è BackgroundImage Search?
BackgroundImage Search è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "This extension shows a Google Image search result for the current page".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione BackgroundImage Search
Scarica i file di estensione BackgroundImage Search in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | BackgroundImage Search |
ID | olemhlpdoebkeehhjgifmemjdafeikld |
URL Ufficiale | https://chromewebstore.google.com/detail/backgroundimage-search/olemhlpdoebkeehhjgifmemjdafeikld |
Descrizione | This extension shows a Google Image search result for the current page |
Dimensione del File | 468 KB |
Conteggio Installazioni | 201 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2019-03-08 |
Data di Pubblicazione | 2019-03-08 |
Sviluppatore | Unknown |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |