Images reloader
This extension allows you to reload images which failed to load just in one click
Vad är Images reloader?
Images reloader är en Chrome-tillägg utvecklad av Pavel, och dess huvudfunktion är "This extension allows you to reload images which failed to load just in one click".
Tilläggsskärmbilder
Ladda ner Images reloader-förlängningens CRX-fil
Ladda ner Images reloader-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | cfnnfecmcnfcjohnkmaojedpmnjpeoik |
| Officiell webbadress | https://chromewebstore.google.com/detail/images-reloader/cfnnfecmcnfcjohnkmaojedpmnjpeoik |
| Beskrivning | This extension allows you to reload images which failed to load just in one click |
| Filstorlek | 420 KB |
| Antal Installationer | 1,055 |
| Aktuell Version | 1.1 |
| Senast Uppdaterad | 2022-06-07 |
| Publiceringsdatum | 2015-06-15 |
| Betyg | 4.90/5 Totalt 21 Betyg |
| Utvecklare | Pavel |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/jazzfog/Reload-Images-Browser-Plugin |
| Hjälpsida URL | https://github.com/jazzfog/Reload-Images-Browser-Plugin/issues |
| Stödda Språk | 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\/*"
]
} | |