Image Extractor
Extracts image names and allows copying image URLs.
Image Extractor란 무엇입니까?
Image Extractor은(는) https://www.bigtechies.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extracts image names and allows copying image URLs."입니다.
확장 프로그램 스크린샷
Image Extractor 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Image Extractor Chrome Extension The Image Extractor Chrome extension allows users to extract image information from a webpage's content area, including image names, alt texts, and URLs. Users can also download individual images, copy image URLs, and download all images as a ZIP file. Features - Extract images from the content area of a webpage - Display image names and alt texts - Show a small image preview - Download individual images - Copy image URLs to clipboard - Download all images as a ZIP file Installation 1. Clone or download this repository. 2. Open the Chrome browser and navigate to `chrome://extensions/`. 3. Enable the "Developer mode" toggle in the top right corner. 4. Click "Load unpacked" and select the directory containing the extension files. 5. The Image Extractor extension is now installed and ready to use. Usage 1. Navigate to a webpage with images you want to extract. 2. Click on the Image Extractor extension icon in the Chrome toolbar. 3. In the extension popup, click the "Extract Images" button. 4. The images from the content area will be displayed along with their names, alt texts, and a small preview. 5. To download an individual image, click the "Download" (⬇️) icon. 6. To copy an image URL, click the "Copy URL" (📋) icon. 7. To download all images as a ZIP file, click the "Download All Images" button.
확장 프로그램 기본 정보
이름 | Image Extractor |
ID | aenndgkopjmlkcbaohiolnlcfacniknc |
공식 URL | https://chromewebstore.google.com/detail/image-extractor/aenndgkopjmlkcbaohiolnlcfacniknc |
설명 | Extracts image names and allows copying image URLs. |
파일 크기 | 57.38 KB |
설치 횟수 | 3,000 |
현재 버전 | 1.1 |
최근 업데이트 | 2023-06-19 |
출시 날짜 | 2023-05-24 |
평점 | 5.00/5 총 6 개의 평점 |
개발자 | https://www.bigtechies.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.bigtechies.com/ |
도움말 페이지 URL | https://github.com/AleemIqbal/image-extractor-extension |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Image Extractor", "version": "1.1", "description": "Extracts image names and allows copying image URLs.", "icons": { "48": "icon.png" }, "permissions": [ "activeTab" ], "action": { "default_popup": "popup.html", "default_icon": { "48": "icon.png" } }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "contentScript.js" ] } ], "background": { "service_worker": "background.js" } } |