Images reloader
This extension allows you to reload images which failed to load just in one click
Apa itu Images reloader?
Images reloader adalah ekstensi Chrome yang dikembangkan oleh Pavel, dan fitur utamanya adalah "This extension allows you to reload images which failed to load just in one click".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Images reloader
Unduh file ekstensi Images reloader dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Images reloader |
ID | cfnnfecmcnfcjohnkmaojedpmnjpeoik |
URL Resmi | https://chromewebstore.google.com/detail/images-reloader/cfnnfecmcnfcjohnkmaojedpmnjpeoik |
Deskripsi | This extension allows you to reload images which failed to load just in one click |
Ukuran File | 420 KB |
Jumlah Instalasi | 1,055 |
Versi Saat Ini | 1.1 |
Terakhir Diperbarui | 2022-06-07 |
Tanggal Publikasi | 2015-06-15 |
Penilaian | 4.90/5 Total 21 Penilaian |
Pengembang | Pavel |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/jazzfog/Reload-Images-Browser-Plugin |
URL Halaman Bantuan | https://github.com/jazzfog/Reload-Images-Browser-Plugin/issues |
Bahasa yang Didukung | 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\/*" ] } |