BackgroundImage Search

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

什么是BackgroundImage Search?

BackgroundImage Search是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“This extension shows a Google Image search result for the current page”。

扩展截图

screenshot

下载BackgroundImage Search扩展crx文件

下载BackgroundImage Search扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 BackgroundImage Search BackgroundImage Search
ID olemhlpdoebkeehhjgifmemjdafeikld
官方URL https://chromewebstore.google.com/detail/backgroundimage-search/olemhlpdoebkeehhjgifmemjdafeikld
简介 This extension shows a Google Image search result for the current page
文件大小 468 KB
安装次数 201
当前版本 1.0
更新时间 2019-03-08
上架时间 2019-03-08
开发者 Unknown
付费类型 free
支持的语言 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"
    }
}