Image Extractor
Extracts image names and allows copying image URLs.
Image Extractor क्या है?
Image Extractor https://www.bigtechies.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extracts image names and allows copying image URLs."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Image Extractor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } } |