Images reloader
This extension allows you to reload images which failed to load just in one click
Was ist Images reloader?
Images reloader ist eine Chrome-Erweiterung, die von Pavel entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to reload images which failed to load just in one click".
Erweiterungsscreenshots
Images reloader-Erweiterungs-CRX-Datei herunterladen
Laden Sie Images reloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Images reloader |
ID | cfnnfecmcnfcjohnkmaojedpmnjpeoik |
Offizielle URL | https://chromewebstore.google.com/detail/images-reloader/cfnnfecmcnfcjohnkmaojedpmnjpeoik |
Beschreibung | This extension allows you to reload images which failed to load just in one click |
Dateigröße | 420 KB |
Installationsanzahl | 1,055 |
Aktuelle Version | 1.1 |
Letztes Update | 2022-06-07 |
Veröffentlichungsdatum | 2015-06-15 |
Bewertung | 4.90/5 Insgesamt 21 Bewertungen |
Entwickler | Pavel |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/jazzfog/Reload-Images-Browser-Plugin |
Hilfeseite URL | https://github.com/jazzfog/Reload-Images-Browser-Plugin/issues |
Unterstützte Sprachen | 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\/*" ] } |