BackgroundImage Search

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

BackgroundImage Search là gì?

BackgroundImage Search là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "This extension shows a Google Image search result for the current page".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng BackgroundImage Search

Tải xuống các tệp mở rộng BackgroundImage Search dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên BackgroundImage Search BackgroundImage Search
ID olemhlpdoebkeehhjgifmemjdafeikld
URL Chính Thức https://chromewebstore.google.com/detail/backgroundimage-search/olemhlpdoebkeehhjgifmemjdafeikld
Mô tả This extension shows a Google Image search result for the current page
Kích Thước Tệp 468 KB
Số Lần Cài Đặt 201
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2019-03-08
Ngày Phát Hành 2019-03-08
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}