Images Under Cursor
Finds all images and background images laying under the cursor
Images Under Cursor란 무엇입니까?
Images Under Cursor은(는) Alexandre Macabies에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Finds all images and background images laying under the cursor"입니다.
확장 프로그램 스크린샷
Images Under Cursor 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |