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 |
官方網址 | 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\/*" ] } |