Image extraction
Displays a list of the images used on the website.
Image extraction란 무엇입니까?
Image extraction은(는) sato.magicword에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays a list of the images used on the website."입니다.
확장 프로그램 스크린샷
Image extraction 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Displays a list of the images used on the website. The images loaded with "" or "css:background" are the target of the list. ウェブサイトで使用されている画像のリストを表示します。 「
」または「css:background」で読み込まれた画像が対象です。 ウェブ上の画像を保存するのに最適です。
확장 프로그램 기본 정보
이름 | |
ID | ceopbbecmahcocdoeadpakgmhmgjhaae |
공식 URL | https://chrome.google.com/webstore/detail/image-extraction/ceopbbecmahcocdoeadpakgmhmgjhaae |
설명 | Displays a list of the images used on the website. |
파일 크기 | 8.81 KB |
설치 횟수 | 117 |
현재 버전 | 1.0.00.0000 |
최근 업데이트 | 2020-05-19 |
출시 날짜 | 2020-05-19 |
개발자 | sato.magicword |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://kaminarimagazine.com/ |
지원되는 언어 | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Image extraction", "description": "Displays a list of the images used on the website.", "short_name": "Img ex", "version": "1.0.00.0000", "author": "Shinji Sato", "homepage_url": "https:\/\/kaminarimagazine.com\/", "icons": { "16": "image\/icon-16x16.png", "48": "image\/icon-48x48.png", "128": "image\/icon-128x128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "main.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": { "19": "image\/icon-19x19.png" }, "default_title": "Image List" }, "permissions": [ "tabs", "background", "http:\/\/*\/*", "https:\/\/*\/*" ] } |