BackgroundImage Search

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

Apa itu BackgroundImage Search?

BackgroundImage Search adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "This extension shows a Google Image search result for the current page".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi BackgroundImage Search

Unduh file ekstensi BackgroundImage Search dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama BackgroundImage Search BackgroundImage Search
ID olemhlpdoebkeehhjgifmemjdafeikld
URL Resmi https://chromewebstore.google.com/detail/backgroundimage-search/olemhlpdoebkeehhjgifmemjdafeikld
Deskripsi This extension shows a Google Image search result for the current page
Ukuran File 468 KB
Jumlah Instalasi 201
Versi Saat Ini 1.0
Terakhir Diperbarui 2019-03-08
Tanggal Publikasi 2019-03-08
Pengembang Unknown
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}