Images
View and download all images on a page.
Images क्या है?
Images akinoreh द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "View and download all images on a page."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Images एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension allows you to view and download all images on a page. Roadmap: • Support for images from linked stylesheets • Support for base64 images (they are downloadable, but can't be viewed in a new window [with click]) • Make all images downloadable (zipped) • Filters Credits: • "images" icon from https://thenounproject.com/term/images/212328/ (by Julynn B.) • "Download button" icon from https://www.flaticon.com/free-icon/download-button_532 (by Freepik) Change log • v1.4.2 (2021-02-05): · Started capturing images from SVGs. • v1.4.1 (2019-05-06): · Switched from style.innerText to style.textContent. Styles in SVG elements don't have innerText property. (Why the hell did I even use .innerText?) • v1.4 (2019-04-07): · Added filters: width and height • v1.3 (2019-03-10): · Started capturing images from "content: url(...)" • v1.2 (2019-03-10): · Switched from to chrome.downloads.download() · Fixed base64 image download • v1.1 (2019-03-10): · Repeating images (same image used multiple times) are removed · Error messages are added (e.g. chrome:// URL, extensions gallery) · Images are downloadable • v1.0 (2019-03-09, first release): · Images and their dimensions are added/visible · Image names are added as title attribute (hover over an image to see)
एक्सटेंशन की मूल जानकारी
नाम | Images |
ID | iieipaakoflfijmpbjdoicmhgafhmgme |
आधिकारिक URL | https://chromewebstore.google.com/detail/images/iieipaakoflfijmpbjdoicmhgafhmgme |
विवरण | View and download all images on a page. |
फ़ाइल का आकार | 15.39 KB |
स्थापना संख्या | 1,467 |
वर्तमान संस्करण | 1.4.2 |
अंतिम अपडेट | 2021-02-10 |
प्रकाशन तिथि | 2019-05-06 |
रेटिंग | 3.50/5 कुल 6 रेटिंग्स |
डेवलपर | akinoreh |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Images", "description": "View and download all images on a page.", "version": "1.4.2", "browser_action": { "default_title": "View and download all images on a page", "default_popup": "popup.html", "default_icon": { "16": "images\/images_16.png", "32": "images\/images_32.png", "48": "images\/images_48.png", "128": "images\/images_128.png" } }, "icons": { "16": "images\/images_16.png", "32": "images\/images_32.png", "48": "images\/images_48.png", "128": "images\/images_128.png" }, "permissions": [ "activeTab", "downloads" ] } |