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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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\/*" ] } |