Images reloader

This extension allows you to reload images which failed to load just in one click

Images reloader क्या है?

Images reloader Pavel द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to reload images which failed to load just in one click"।

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

screenshot

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

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

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

                        There are many reasons why an image in a website might fail to load, some of them fail due to site's issues another due to your internet connection interruptions. No matter what the reason is - this extension will help you to easily reload the failed images.                    

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

नाम Images reloader Images reloader
ID cfnnfecmcnfcjohnkmaojedpmnjpeoik
आधिकारिक URL https://chromewebstore.google.com/detail/images-reloader/cfnnfecmcnfcjohnkmaojedpmnjpeoik
विवरण This extension allows you to reload images which failed to load just in one click
फ़ाइल का आकार 420 KB
स्थापना संख्या 1,055
वर्तमान संस्करण 1.1
अंतिम अपडेट 2022-06-07
प्रकाशन तिथि 2015-06-15
रेटिंग 4.90/5 कुल 21 रेटिंग्स
डेवलपर Pavel
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/jazzfog/Reload-Images-Browser-Plugin
सहायता पृष्ठ URL https://github.com/jazzfog/Reload-Images-Browser-Plugin/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Images reloader",
    "description": "This extension allows you to reload images which failed to load just in one click",
    "version": "1.1",
    "browser_action": {
        "name": "Click to reload images",
        "default_icon": {
            "19": "img\/icon_19.png",
            "38": "img\/icon_38.png",
            "128": "img\/icon_128.png",
            "256": "img\/icon_256.png",
            "512": "img\/icon_512.png"
        }
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "cs_script.js",
                "sc_notificator.js"
            ],
            "css": [
                "cs_styles.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "bg_script.js"
        ]
    },
    "web_accessible_resources": [
        "img\/*"
    ]
}