BackgroundImage Search
This extension shows a Google Image search result for the current page
Vad är BackgroundImage Search?
BackgroundImage Search är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "This extension shows a Google Image search result for the current page".
Tilläggsskärmbilder
Ladda ner BackgroundImage Search-förlängningens CRX-fil
Ladda ner BackgroundImage Search-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | BackgroundImage Search |
ID | olemhlpdoebkeehhjgifmemjdafeikld |
Officiell webbadress | https://chromewebstore.google.com/detail/backgroundimage-search/olemhlpdoebkeehhjgifmemjdafeikld |
Beskrivning | This extension shows a Google Image search result for the current page |
Filstorlek | 468 KB |
Antal Installationer | 201 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2019-03-08 |
Publiceringsdatum | 2019-03-08 |
Utvecklare | Unknown |
Betalningssätt | free |
Stödda Språk | 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" } } |