Image Extractor

Extracts image names and allows copying image URLs.

Image Extractor là gì?

Image Extractor là một tiện ích mở rộng Chrome được phát triển bởi https://www.bigtechies.com, và tính năng chính của nó là "Extracts image names and allows copying image URLs.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Image Extractor

Tải xuống các tệp mở rộng Image Extractor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Image Extractor Image Extractor
ID aenndgkopjmlkcbaohiolnlcfacniknc
URL Chính Thức https://chromewebstore.google.com/detail/image-extractor/aenndgkopjmlkcbaohiolnlcfacniknc
Mô tả Extracts image names and allows copying image URLs.
Kích Thước Tệp 57.38 KB
Số Lần Cài Đặt 3,000
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2023-06-19
Ngày Phát Hành 2023-05-24
Đánh Giá 5.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển https://www.bigtechies.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.bigtechies.com/
URL Trang Trợ Giúp https://github.com/AleemIqbal/image-extractor-extension
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}