Images reloader
This extension allows you to reload images which failed to load just in one click
什么是Images reloader?
Images reloader是由Pavel开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to reload images which failed to load just in one click”。
扩展截图
下载Images reloader扩展crx文件
下载Images reloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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\/*" ] } |