Right-Click Borescope
List all images under your cursor, even ones hidden by other elements
Right-Click Borescopeคืออะไร?
Right-Click Borescope เป็นส่วนขยายของ Chrome ที่พัฒนาโดย blackle mori และคุณลักษณะหลักของมันคือ "List all images under your cursor, even ones hidden by other elements"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Right-Click Borescope
ดาวน์โหลดไฟล์ส่วนขยาย Right-Click Borescope ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Dig into web pages, find buried treasure.
Right-Click Borescope allows you to view all images under your cursor, even if there's other images covering it, or if it's an image that has "right-click save" disabled. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | mmdokamaalplkfiddbkhpfjmkhecbcnh |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/right-click-borescope/mmdokamaalplkfiddbkhpfjmkhecbcnh |
| คำอธิบาย | List all images under your cursor, even ones hidden by other elements |
| ขนาดไฟล์ | 70.58 KB |
| จำนวนการติดตั้ง | 537 |
| เวอร์ชันปัจจุบัน | 0.0.4 |
| อัปเดตครั้งล่าสุด | 2022-05-10 |
| วันที่เผยแพร่ | 2022-03-29 |
| คะแนน | 5.00/5 รวมทั้งหมด 12 คะแนน |
| ผู้พัฒนา | blackle mori |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://github.com/blackle/Right-Click-Borescope |
| URL หน้าช่วยเหลือ | https://github.com/blackle/Right-Click-Borescope/issues |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Right-Click Borescope",
"version": "0.0.4",
"description": "List all images under your cursor, even ones hidden by other elements",
"permissions": [
"contextMenus"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"client.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"icons": {
"16": "img\/icon16.png",
"48": "img\/icon48.png",
"128": "img\/icon128.png"
},
"manifest_version": 3
} | |