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.”。

擴展截圖

screenshot

下載Image Extractor擴展crx文件

下載Image Extractor擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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 Image Extractor
ID aenndgkopjmlkcbaohiolnlcfacniknc
官方網址 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"
    }
}