BackgroundImage Search

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

ما هو BackgroundImage Search؟

BackgroundImage Search هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "This extension shows a Google Image search result for the current page".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة BackgroundImage Search

قم بتنزيل ملفات الامتداد BackgroundImage Search بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    }
}