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"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย BackgroundImage Search
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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" } } |