Images Under Cursor
Finds all images and background images laying under the cursor
Images Under Cursorคืออะไร?
Images Under Cursor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alexandre Macabies และคุณลักษณะหลักของมันคือ "Finds all images and background images laying under the cursor"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Images Under Cursor
ดาวน์โหลดไฟล์ส่วนขยาย Images Under Cursor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Find and extract all images, pictures, GIFs, background images and videos laying under the cursor, whatever their depth or nesting in the DOM tree. This extension also supports extracting the current frame of canvas elements. This is useful to bypass the HTML, Javascript or CSS tricks some websites use to prevent the user from accessing the page assets — which is plain ridiculous, as there are accessible anyway. Usage: right-click on any image or video, then select “Images under cursor”: a list of found images will appear, that you can open or save. You can also use the Ctrl+Shift+F keyboard shortcut. The shortcut can be customized in Chrome settings. This extension is open-source software licensed under MIT. Visit website link for source.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Images Under Cursor |
ID | kjfcpinmimcpiabejchhneahpajgklcj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/images-under-cursor/kjfcpinmimcpiabejchhneahpajgklcj |
คำอธิบาย | Finds all images and background images laying under the cursor |
ขนาดไฟล์ | 20.34 KB |
จำนวนการติดตั้ง | 738 |
เวอร์ชันปัจจุบัน | 0.5 |
อัปเดตครั้งล่าสุด | 2020-10-23 |
วันที่เผยแพร่ | 2018-03-23 |
คะแนน | 4.28/5 รวมทั้งหมด 18 คะแนน |
ผู้พัฒนา | Alexandre Macabies |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/zopieux/chrome-images-under-cursor |
URL หน้าช่วยเหลือ | https://github.com/zopieux/chrome-images-under-cursor |
ภาษาที่รองรับ | en,fr |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_app_name__", "short_name": "IUC", "description": "__MSG_app_desc__", "version": "0.5", "author": "Alexandre Macabies", "homepage_url": "https:\/\/github.com\/zopieux\/chrome-images-under-cursor", "incognito": "spanning", "default_locale": "en", "permissions": [ "contextMenus", "activeTab", "clipboardWrite" ], "icons": { "16": "img\/menu-icon.png", "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "background": { "scripts": [ "js\/main.js" ], "persistent": false }, "commands": { "invoke": { "description": "__MSG_invoke_cmd_desc__", "suggested_key": { "default": "Ctrl+Shift+F" }, "global": false } }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "all_frames": true, "js": [ "js\/content.js" ], "css": [ "css\/content.css" ] } ], "web_accessible_resources": [ "img\/icon-48.png", "img\/icon-nope-26.png" ] } |