Images reloader

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

What is Images reloader?

Images reloader is a Chrome extension developed by Pavel, and its main feature is "This extension allows you to reload images which failed to load just in one click".

Extension Screenshots

screenshot

Download Images reloader Extension CRX File

Download Images reloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Images reloader Images reloader
ID cfnnfecmcnfcjohnkmaojedpmnjpeoik
Official URL https://chromewebstore.google.com/detail/images-reloader/cfnnfecmcnfcjohnkmaojedpmnjpeoik
Description This extension allows you to reload images which failed to load just in one click
File Size 420 KB
Installation Count 1,055
Current Version 1.1
Last Updated 2022-06-07
Publish Date 2015-06-15
Rating 4.90/5 Total 21 Ratings
Developer Pavel
Email [email protected]
Payment Type free
Extension Website https://github.com/jazzfog/Reload-Images-Browser-Plugin
Help Page URL https://github.com/jazzfog/Reload-Images-Browser-Plugin/issues
Supported Languages 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\/*"
    ]
}