Image-Details
Adds a context menu entry to open a popup window with some image details.
Image-Details क्या है?
Image-Details https://ht0.de द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a context menu entry to open a popup window with some image details."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Image-Details एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension adds a context menu entry that will show image details in a popup window. It will work on images that use the HTML tag and on most images that are included using the CSS background-image property. Shown details are: - File name - File type/extension - MIME type - File size - Image dimensions (width + height on page, natural width + natural height, scaling) - Date (if available) - Description / Alternative text - Title - Image URL - Source page URL The image viewer lets you examine the image using its drag and zoom capability. And you can download the image by clicking the little save icon on the right end of the file name. If you encounter bugs or have a feature request please send me an email. And if you like this extension please consider a donation. Thank you! See https://ht0.de/image-details.html for more information.
एक्सटेंशन की मूल जानकारी
नाम | Image-Details |
ID | aenkfgeagkbpmkbchfbfnkcefogmnboc |
आधिकारिक URL | https://chromewebstore.google.com/detail/image-details/aenkfgeagkbpmkbchfbfnkcefogmnboc |
विवरण | Adds a context menu entry to open a popup window with some image details. |
फ़ाइल का आकार | 23.32 KB |
स्थापना संख्या | 4,709 |
वर्तमान संस्करण | 3.0.1 |
अंतिम अपडेट | 2022-05-31 |
प्रकाशन तिथि | 2018-06-04 |
रेटिंग | 3.78/5 कुल 23 रेटिंग्स |
डेवलपर | https://ht0.de |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://ht0.de/image-details.html |
सहायता पृष्ठ URL | https://ht0.de/image-details.html |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Image-Details", "description": "Adds a context menu entry to open a popup window with some image details.", "version": "3.0.1", "homepage_url": "https:\/\/ht0.de\/image-details.html", "manifest_version": 3, "permissions": [ "contextMenus" ], "icons": { "16": "logo_16.png", "48": "logo_48.png", "128": "logo_128.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "js": [ "contentscript.js" ], "run_at": "document_start", "all_frames": true } ] } |