Images reloader

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

Wat is Images reloader?

Images reloader is een Chrome-extensie ontwikkeld door Pavel, en de belangrijkste functie is "This extension allows you to reload images which failed to load just in one click".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Images reloader

Download Images reloader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Images reloader Images reloader
ID cfnnfecmcnfcjohnkmaojedpmnjpeoik
Officiële URL https://chromewebstore.google.com/detail/images-reloader/cfnnfecmcnfcjohnkmaojedpmnjpeoik
Beschrijving This extension allows you to reload images which failed to load just in one click
Bestandsgrootte 420 KB
Aantal Installaties 1,055
Huidige Versie 1.1
Laatst Bijgewerkt 2022-06-07
Publicatiedatum 2015-06-15
Beoordeling 4.90/5 Totaal 21 Beoordelingen
Ontwikkelaar Pavel
E-mail jazz.fog@gmail.com
Betalingswijze free
Extensiewebsite https://github.com/jazzfog/Reload-Images-Browser-Plugin
Help Pagina-URL https://github.com/jazzfog/Reload-Images-Browser-Plugin/issues
Ondersteunde Talen 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\/*"
    ]
}