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”。
擴展截圖
下載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 |
ID | olemhlpdoebkeehhjgifmemjdafeikld |
官方網址 | 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" } } |