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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}