Pic info

Gives a detailed info about the image like URL, alt text, file size and dimension

Pic info क्या है?

Pic info https://blog.idevelopweb.site द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Gives a detailed info about the image like URL, alt text, file size and dimension"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Pic info एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        The below details of an image are shown when hovered over it
>shows the file url/path and a link to open it in a new window
>shows original image width and height
>shows actual image width and height used
>Shows alt text if available
>shows actual file size of the image(doesn't work for local image path)

Note: 
>Pic info box can be dragged around website for user convenience 
>Hovering over image which has CSS overlay effect may sometimes cause the extension not to display image details, remove those effects to view image info

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Change log:

V_1.5 => Added support to show ALT text for images if available 

V_1.4 => Added support for background images to show its info

V_1.3 => bug fix for local file access alert

V_1.2 => works without refresh on first time install and fixed css overide issues in some websites

V_1.1 => bug fix and image updation                    

एक्सटेंशन की मूल जानकारी

नाम Pic info Pic info
ID ljociicifligbnfpobemibmmecnbbmla
आधिकारिक URL https://chromewebstore.google.com/detail/pic-info/ljociicifligbnfpobemibmmecnbbmla
विवरण Gives a detailed info about the image like URL, alt text, file size and dimension
फ़ाइल का आकार 41.22 KB
स्थापना संख्या 4,356
वर्तमान संस्करण 1.5
अंतिम अपडेट 2018-09-28
प्रकाशन तिथि 2018-09-27
रेटिंग 4.75/5 कुल 12 रेटिंग्स
डेवलपर https://blog.idevelopweb.site
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://blog.idevelopweb.site/chrome-extension/picture-info-chrome-extension/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pic info",
    "description": "Gives a detailed info about the image like URL, alt text, file size and dimension",
    "version": "1.5",
    "icons": {
        "16": "img\/icon.png",
        "32": "img\/icon-32.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/content.js"
            ],
            "css": [
                "css\/style.css"
            ]
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "js\/image.js"
        ]
    },
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_title": "Pic info"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "permissions": [
        "tabs",
        "activeTab",
        ""
    ]
}