BackgroundImage Search

This extension shows a Google Image search result for the current page

What is BackgroundImage Search?

BackgroundImage Search is a Chrome extension developed by Unknown, and its main feature is "This extension shows a Google Image search result for the current page".

Extension Screenshots

screenshot

Download BackgroundImage Search Extension CRX File

Download BackgroundImage Search extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name BackgroundImage Search BackgroundImage Search
ID olemhlpdoebkeehhjgifmemjdafeikld
Official URL https://chromewebstore.google.com/detail/backgroundimage-search/olemhlpdoebkeehhjgifmemjdafeikld
Description This extension shows a Google Image search result for the current page
File Size 468 KB
Installation Count 201
Current Version 1.0
Last Updated 2019-03-08
Publish Date 2019-03-08
Developer Unknown
Payment Type free
Supported Languages 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"
    }
}