Images reloader
This extension allows you to reload images which failed to load just in one click
Что такое Images reloader?
Images reloader - это расширение Chrome, разработанное Pavel, и его основная функция - "This extension allows you to reload images which failed to load just in one click".
Снимки экрана расширения
Скачать файл CRX расширения Images reloader
Скачайте файлы расширений 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. Основная информация о расширении
| Название | |
| 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\/*"
]
} | |