BackgroundImage Search

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

Co to jest BackgroundImage Search?

BackgroundImage Search to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „This extension shows a Google Image search result for the current page”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia BackgroundImage Search

Pobierz pliki rozszerzeń BackgroundImage Search w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa BackgroundImage Search BackgroundImage Search
ID olemhlpdoebkeehhjgifmemjdafeikld
Oficjalny URL https://chromewebstore.google.com/detail/backgroundimage-search/olemhlpdoebkeehhjgifmemjdafeikld
Opis This extension shows a Google Image search result for the current page
Rozmiar pliku 468 KB
Liczba instalacji 201
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2019-03-08
Data Publikacji 2019-03-08
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki 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"
    }
}